aboutsummaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
Diffstat (limited to 'common')
-rw-r--r--common/engine.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/common/engine.h b/common/engine.h
index 5bd4857cef..d62a4de3cd 100644
--- a/common/engine.h
+++ b/common/engine.h
@@ -28,6 +28,11 @@ extern const char *gScummVMVersion; // e.g. "0.4.1"
extern const char *gScummVMBuildDate; // e.g. "2003-06-24"
extern const char *gScummVMFullVersion; // e.g. "ScummVM 0.4.1 (2003-06-24)"
+// TODO: Get rid of these enums. Ideally, GIDs should be
+// 100% local to the module they are defined in. Right now
+// we can't make this change since some of the backends
+// and also gui/launcher.cpp contain tests on the GID.
+// Ideally, all those should be converted to something else.
enum GameId {
GID_SCUMM_FIRST = 1,
GID_SCUMM_LAST = GID_SCUMM_FIRST + 99,