aboutsummaryrefslogtreecommitdiff
path: root/simon/intern.h
diff options
context:
space:
mode:
authorOliver Kiehl2002-11-27 15:08:24 +0000
committerOliver Kiehl2002-11-27 15:08:24 +0000
commite6883de2ff154fc5c7495bec5f7af5aeb42f94ce (patch)
tree44822907bd5a8da003b0446ce9c5573ef4013f1f /simon/intern.h
parent1afdb5c4bf2f6b8799449e7e3143bcc54715f4e6 (diff)
downloadscummvm-rg350-e6883de2ff154fc5c7495bec5f7af5aeb42f94ce.tar.gz
scummvm-rg350-e6883de2ff154fc5c7495bec5f7af5aeb42f94ce.tar.bz2
scummvm-rg350-e6883de2ff154fc5c7495bec5f7af5aeb42f94ce.zip
moved game enum to intern.h
svn-id: r5728
Diffstat (limited to 'simon/intern.h')
-rw-r--r--simon/intern.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/simon/intern.h b/simon/intern.h
index a2603709ea..8c6daec43e 100644
--- a/simon/intern.h
+++ b/simon/intern.h
@@ -135,4 +135,19 @@ struct GameSpecificSettings {
const char *gamepc_filename;
};
+enum {
+ GAME_SIMON2 = 1,
+ GAME_WIN = 2,
+ GAME_TALKIE = 4,
+ GAME_DEMO = 8,
+
+ GAME_SIMON1DOS = 0,
+ GAME_SIMON2DOS = GAME_SIMON2,
+ GAME_SIMON1TALKIE = GAME_TALKIE,
+ GAME_SIMON2TALKIE = GAME_SIMON2 + GAME_TALKIE,
+ GAME_SIMON1WIN = GAME_WIN + GAME_TALKIE,
+ GAME_SIMON2WIN = GAME_SIMON2 + GAME_WIN + GAME_TALKIE,
+ GAME_SIMON1DEMO = GAME_DEMO,
+};
+
#endif