aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/sci.h
diff options
context:
space:
mode:
authorFilippos Karapetis2009-07-04 11:33:51 +0000
committerFilippos Karapetis2009-07-04 11:33:51 +0000
commit8726f0198672c26dfb4f3944bf470a2150d8dc01 (patch)
treec4ac9a811dd6daeb2c8d1fbc89ab9863fad05d8e /engines/sci/sci.h
parent230e7a8d2cf422d4956b089f779632de6cecf171 (diff)
downloadscummvm-rg350-8726f0198672c26dfb4f3944bf470a2150d8dc01.tar.gz
scummvm-rg350-8726f0198672c26dfb4f3944bf470a2150d8dc01.tar.bz2
scummvm-rg350-8726f0198672c26dfb4f3944bf470a2150d8dc01.zip
Removed silly FIXME (mixup between debug and engine debug levels)
svn-id: r42088
Diffstat (limited to 'engines/sci/sci.h')
-rw-r--r--engines/sci/sci.h19
1 files changed, 9 insertions, 10 deletions
diff --git a/engines/sci/sci.h b/engines/sci/sci.h
index ca286b0a4c..c1033cb424 100644
--- a/engines/sci/sci.h
+++ b/engines/sci/sci.h
@@ -49,16 +49,15 @@ enum kDebugLevels {
kDebugLevelGfxDriver = 1 << 8,
kDebugLevelBaseSetter = 1 << 9,
kDebugLevelParser = 1 << 10,
- // FIXME: seems that debug level 11 is special (check debugC in common/debug.cpp)
- kDebugLevelMenu = 1 << 12,
- kDebugLevelSaid = 1 << 13,
- kDebugLevelFile = 1 << 14,
- kDebugLevelTime = 1 << 15,
- kDebugLevelRoom = 1 << 16,
- kDebugLevelAvoidPath = 1 << 17,
- kDebugLevelDclInflate = 1 << 18,
- kDebugLevelVM = 1 << 19,
- kDebugLevelScripts = 1 << 20
+ kDebugLevelMenu = 1 << 11,
+ kDebugLevelSaid = 1 << 12,
+ kDebugLevelFile = 1 << 13,
+ kDebugLevelTime = 1 << 14,
+ kDebugLevelRoom = 1 << 15,
+ kDebugLevelAvoidPath = 1 << 16,
+ kDebugLevelDclInflate = 1 << 17,
+ kDebugLevelVM = 1 << 18,
+ kDebugLevelScripts = 1 << 19
};
struct SciGameDescription {