mirror of
https://github.com/libretro/scummvm.git
synced 2025-02-05 02:17:05 +00:00
BURIED: Group GUI options
This commit is contained in:
parent
ae8b436f22
commit
1d991bd10d
@ -19,10 +19,12 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#define GAMEOPTION_ALLOW_SKIP GUIO_GAMEOPTIONS1
|
||||
|
||||
namespace Buried {
|
||||
|
||||
#define GAMEOPTION_ALLOW_SKIP GUIO_GAMEOPTIONS1
|
||||
#define GUIO_FULL_GAME GUIO1(GAMEOPTION_ALLOW_SKIP)
|
||||
#define GUIO_GAME_DEMO GUIO1(GUIO_NOLAUNCHLOAD)
|
||||
|
||||
static const ADGameDescription gameDescriptions[] = {
|
||||
// English Windows 3.11 8BPP
|
||||
// Installed
|
||||
@ -35,7 +37,7 @@ static const ADGameDescription gameDescriptions[] = {
|
||||
Common::EN_ANY,
|
||||
Common::kPlatformWindows,
|
||||
ADGF_NO_FLAGS,
|
||||
GUIO1(GAMEOPTION_ALLOW_SKIP)
|
||||
GUIO_FULL_GAME
|
||||
},
|
||||
|
||||
// English Windows 3.11 24BPP
|
||||
@ -49,7 +51,7 @@ static const ADGameDescription gameDescriptions[] = {
|
||||
Common::EN_ANY,
|
||||
Common::kPlatformWindows,
|
||||
GF_TRUECOLOR,
|
||||
GUIO1(GAMEOPTION_ALLOW_SKIP)
|
||||
GUIO_FULL_GAME
|
||||
},
|
||||
|
||||
// English Windows 3.11 8BPP
|
||||
@ -63,7 +65,7 @@ static const ADGameDescription gameDescriptions[] = {
|
||||
Common::EN_ANY,
|
||||
Common::kPlatformWindows,
|
||||
ADGF_NO_FLAGS,
|
||||
GUIO1(GAMEOPTION_ALLOW_SKIP)
|
||||
GUIO_FULL_GAME
|
||||
},
|
||||
|
||||
// English Windows 3.11 24BPP
|
||||
@ -77,7 +79,7 @@ static const ADGameDescription gameDescriptions[] = {
|
||||
Common::EN_ANY,
|
||||
Common::kPlatformWindows,
|
||||
GF_TRUECOLOR,
|
||||
GUIO1(GAMEOPTION_ALLOW_SKIP)
|
||||
GUIO_FULL_GAME
|
||||
},
|
||||
|
||||
// Japanese Windows 3.11 8BPP
|
||||
@ -91,7 +93,7 @@ static const ADGameDescription gameDescriptions[] = {
|
||||
Common::JA_JPN,
|
||||
Common::kPlatformWindows,
|
||||
ADGF_NO_FLAGS,
|
||||
GUIO1(GAMEOPTION_ALLOW_SKIP)
|
||||
GUIO_FULL_GAME
|
||||
},
|
||||
|
||||
// Japanese Windows 3.11 24BPP
|
||||
@ -105,7 +107,7 @@ static const ADGameDescription gameDescriptions[] = {
|
||||
Common::JA_JPN,
|
||||
Common::kPlatformWindows,
|
||||
GF_TRUECOLOR,
|
||||
GUIO1(GAMEOPTION_ALLOW_SKIP)
|
||||
GUIO_FULL_GAME
|
||||
},
|
||||
|
||||
// English Windows 3.11 8BPP
|
||||
@ -119,7 +121,7 @@ static const ADGameDescription gameDescriptions[] = {
|
||||
Common::EN_ANY,
|
||||
Common::kPlatformWindows,
|
||||
GF_COMPRESSED,
|
||||
GUIO1(GAMEOPTION_ALLOW_SKIP)
|
||||
GUIO_FULL_GAME
|
||||
},
|
||||
|
||||
// English Windows 3.11 24BPP
|
||||
@ -133,7 +135,7 @@ static const ADGameDescription gameDescriptions[] = {
|
||||
Common::EN_ANY,
|
||||
Common::kPlatformWindows,
|
||||
GF_COMPRESSED | GF_TRUECOLOR,
|
||||
GUIO1(GAMEOPTION_ALLOW_SKIP)
|
||||
GUIO_FULL_GAME
|
||||
},
|
||||
|
||||
// English Windows 3.11 8BPP
|
||||
@ -147,7 +149,7 @@ static const ADGameDescription gameDescriptions[] = {
|
||||
Common::EN_ANY,
|
||||
Common::kPlatformWindows,
|
||||
GF_COMPRESSED,
|
||||
GUIO1(GAMEOPTION_ALLOW_SKIP)
|
||||
GUIO_FULL_GAME
|
||||
},
|
||||
|
||||
// English Windows 3.11 24BPP
|
||||
@ -161,7 +163,7 @@ static const ADGameDescription gameDescriptions[] = {
|
||||
Common::EN_ANY,
|
||||
Common::kPlatformWindows,
|
||||
GF_COMPRESSED | GF_TRUECOLOR,
|
||||
GUIO1(GAMEOPTION_ALLOW_SKIP)
|
||||
GUIO_FULL_GAME
|
||||
},
|
||||
|
||||
// English Windows 3.11 8BPP
|
||||
@ -175,7 +177,7 @@ static const ADGameDescription gameDescriptions[] = {
|
||||
Common::EN_ANY,
|
||||
Common::kPlatformWindows,
|
||||
ADGF_NO_FLAGS,
|
||||
GUIO1(GAMEOPTION_ALLOW_SKIP)
|
||||
GUIO_FULL_GAME
|
||||
},
|
||||
|
||||
// English Windows 3.11 24BPP
|
||||
@ -189,7 +191,7 @@ static const ADGameDescription gameDescriptions[] = {
|
||||
Common::EN_ANY,
|
||||
Common::kPlatformWindows,
|
||||
GF_TRUECOLOR,
|
||||
GUIO1(GAMEOPTION_ALLOW_SKIP)
|
||||
GUIO_FULL_GAME
|
||||
},
|
||||
|
||||
// German Windows 3.11 8BPP
|
||||
@ -203,7 +205,7 @@ static const ADGameDescription gameDescriptions[] = {
|
||||
Common::DE_DEU,
|
||||
Common::kPlatformWindows,
|
||||
ADGF_NO_FLAGS,
|
||||
GUIO1(GAMEOPTION_ALLOW_SKIP)
|
||||
GUIO_FULL_GAME
|
||||
},
|
||||
|
||||
// German Windows 3.11 24BPP
|
||||
@ -217,7 +219,7 @@ static const ADGameDescription gameDescriptions[] = {
|
||||
Common::DE_DEU,
|
||||
Common::kPlatformWindows,
|
||||
GF_TRUECOLOR,
|
||||
GUIO1(GAMEOPTION_ALLOW_SKIP)
|
||||
GUIO_FULL_GAME
|
||||
},
|
||||
|
||||
// French Windows 3.11 8BPP
|
||||
@ -231,7 +233,7 @@ static const ADGameDescription gameDescriptions[] = {
|
||||
Common::FR_FRA,
|
||||
Common::kPlatformWindows,
|
||||
ADGF_NO_FLAGS,
|
||||
GUIO1(GAMEOPTION_ALLOW_SKIP)
|
||||
GUIO_FULL_GAME
|
||||
},
|
||||
|
||||
// French Windows 3.11 24BPP
|
||||
@ -245,7 +247,7 @@ static const ADGameDescription gameDescriptions[] = {
|
||||
Common::FR_FRA,
|
||||
Common::kPlatformWindows,
|
||||
GF_TRUECOLOR,
|
||||
GUIO1(GAMEOPTION_ALLOW_SKIP)
|
||||
GUIO_FULL_GAME
|
||||
},
|
||||
|
||||
// Italian Windows 3.11 8BPP
|
||||
@ -259,7 +261,7 @@ static const ADGameDescription gameDescriptions[] = {
|
||||
Common::IT_ITA,
|
||||
Common::kPlatformWindows,
|
||||
ADGF_NO_FLAGS,
|
||||
GUIO1(GAMEOPTION_ALLOW_SKIP)
|
||||
GUIO_FULL_GAME
|
||||
},
|
||||
|
||||
// Italian Windows 3.11 24BPP
|
||||
@ -273,7 +275,7 @@ static const ADGameDescription gameDescriptions[] = {
|
||||
Common::IT_ITA,
|
||||
Common::kPlatformWindows,
|
||||
GF_TRUECOLOR,
|
||||
GUIO1(GAMEOPTION_ALLOW_SKIP)
|
||||
GUIO_FULL_GAME
|
||||
},
|
||||
|
||||
// Spanish Windows 3.11 8BPP
|
||||
@ -287,7 +289,7 @@ static const ADGameDescription gameDescriptions[] = {
|
||||
Common::ES_ESP,
|
||||
Common::kPlatformWindows,
|
||||
ADGF_NO_FLAGS,
|
||||
GUIO1(GAMEOPTION_ALLOW_SKIP)
|
||||
GUIO_FULL_GAME
|
||||
},
|
||||
|
||||
// Spanish Windows 3.11 24BPP
|
||||
@ -301,7 +303,7 @@ static const ADGameDescription gameDescriptions[] = {
|
||||
Common::ES_ESP,
|
||||
Common::kPlatformWindows,
|
||||
GF_TRUECOLOR,
|
||||
GUIO1(GAMEOPTION_ALLOW_SKIP)
|
||||
GUIO_FULL_GAME
|
||||
},
|
||||
|
||||
// English Windows 95 8BPP
|
||||
@ -314,7 +316,7 @@ static const ADGameDescription gameDescriptions[] = {
|
||||
Common::EN_ANY,
|
||||
Common::kPlatformWindows,
|
||||
GF_WIN95,
|
||||
GUIO1(GAMEOPTION_ALLOW_SKIP)
|
||||
GUIO_FULL_GAME
|
||||
},
|
||||
|
||||
// English Windows 95 24BPP
|
||||
@ -327,7 +329,7 @@ static const ADGameDescription gameDescriptions[] = {
|
||||
Common::EN_ANY,
|
||||
Common::kPlatformWindows,
|
||||
GF_TRUECOLOR | GF_WIN95,
|
||||
GUIO1(GAMEOPTION_ALLOW_SKIP)
|
||||
GUIO_FULL_GAME
|
||||
},
|
||||
|
||||
// English Windows Demo 8BPP
|
||||
@ -338,7 +340,7 @@ static const ADGameDescription gameDescriptions[] = {
|
||||
Common::EN_ANY,
|
||||
Common::kPlatformWindows,
|
||||
ADGF_DEMO,
|
||||
GUIO1(GUIO_NOLAUNCHLOAD)
|
||||
GUIO_GAME_DEMO
|
||||
},
|
||||
|
||||
// English Windows Demo 24BPP
|
||||
@ -349,7 +351,7 @@ static const ADGameDescription gameDescriptions[] = {
|
||||
Common::EN_ANY,
|
||||
Common::kPlatformWindows,
|
||||
ADGF_DEMO | GF_TRUECOLOR,
|
||||
GUIO1(GUIO_NOLAUNCHLOAD)
|
||||
GUIO_GAME_DEMO
|
||||
},
|
||||
|
||||
// English Windows Demo 8BPP - US Gold (UK)
|
||||
@ -360,7 +362,7 @@ static const ADGameDescription gameDescriptions[] = {
|
||||
Common::EN_ANY,
|
||||
Common::kPlatformWindows,
|
||||
ADGF_DEMO,
|
||||
GUIO1(GUIO_NOLAUNCHLOAD)
|
||||
GUIO_GAME_DEMO
|
||||
},
|
||||
|
||||
// English Windows Demo 24BPP - US Gold (UK)
|
||||
@ -371,7 +373,7 @@ static const ADGameDescription gameDescriptions[] = {
|
||||
Common::EN_ANY,
|
||||
Common::kPlatformWindows,
|
||||
ADGF_DEMO | GF_TRUECOLOR,
|
||||
GUIO1(GUIO_NOLAUNCHLOAD)
|
||||
GUIO_GAME_DEMO
|
||||
},
|
||||
|
||||
// English Windows Demo 8BPP - North America
|
||||
@ -382,7 +384,7 @@ static const ADGameDescription gameDescriptions[] = {
|
||||
Common::EN_ANY,
|
||||
Common::kPlatformWindows,
|
||||
ADGF_DEMO | GF_TRUECOLOR | ADGF_TESTING,
|
||||
GUIO1(GUIO_NOLAUNCHLOAD)
|
||||
GUIO_GAME_DEMO
|
||||
},
|
||||
|
||||
// English Windows Demo 24BPP - North America
|
||||
@ -393,7 +395,7 @@ static const ADGameDescription gameDescriptions[] = {
|
||||
Common::EN_ANY,
|
||||
Common::kPlatformWindows,
|
||||
ADGF_DEMO | GF_TRUECOLOR | ADGF_TESTING,
|
||||
GUIO1(GUIO_NOLAUNCHLOAD)
|
||||
GUIO_GAME_DEMO
|
||||
},
|
||||
|
||||
// English Windows 3.11 Trial 8BPP
|
||||
@ -406,7 +408,7 @@ static const ADGameDescription gameDescriptions[] = {
|
||||
Common::EN_ANY,
|
||||
Common::kPlatformWindows,
|
||||
ADGF_DEMO | GF_TRIAL,
|
||||
GUIO1(GAMEOPTION_ALLOW_SKIP)
|
||||
GUIO_FULL_GAME
|
||||
},
|
||||
|
||||
// English Windows 3.11 Trial 24BPP
|
||||
@ -419,7 +421,7 @@ static const ADGameDescription gameDescriptions[] = {
|
||||
Common::EN_ANY,
|
||||
Common::kPlatformWindows,
|
||||
ADGF_DEMO | GF_TRUECOLOR | GF_TRIAL,
|
||||
GUIO1(GAMEOPTION_ALLOW_SKIP)
|
||||
GUIO_FULL_GAME
|
||||
},
|
||||
|
||||
AD_TABLE_END_MARKER
|
||||
|
Loading…
x
Reference in New Issue
Block a user