Added a new game option to allow the user to decide how to sort sets in filter and award section (by sector, by name or by release date).

This commit is contained in:
Vittorio Alfieri
2021-01-09 13:34:42 +01:00
parent 7a6c4b2c15
commit 7c8b634086
8 changed files with 57 additions and 2 deletions

View File

@@ -47,6 +47,7 @@ public:
SHOWBORDER,
BLKBORDER,
SHOWTOKENS,
SORTINGSETS,
GDVLARGEIMAGE,
CARDPREFETCHING,
OSD,
@@ -274,6 +275,19 @@ private:
static OptionASkipPhase mDef;
};
class OptionASortingSets : public EnumDefinition
{
public:
static EnumDefinition * getInstance()
{
return &mDef;
}
private:
OptionASortingSets();
static OptionASortingSets mDef;
};
class OptionWhosFirst : public EnumDefinition
{
public: