aboutsummaryrefslogtreecommitdiff
path: root/engines/toon
diff options
context:
space:
mode:
authorsylvaintv2015-03-19 22:40:29 +0100
committersylvaintv2015-03-19 22:40:29 +0100
commit15a4371b2d651a382cf077b1e1edef0b21c48685 (patch)
treeb3df4cecea78614526ea59f8e84b24e2f3d31a59 /engines/toon
parente73faeee681a904751db28456a1320b74232ce43 (diff)
downloadscummvm-rg350-15a4371b2d651a382cf077b1e1edef0b21c48685.tar.gz
scummvm-rg350-15a4371b2d651a382cf077b1e1edef0b21c48685.tar.bz2
scummvm-rg350-15a4371b2d651a382cf077b1e1edef0b21c48685.zip
TOON: Fix bad enum syntax
Diffstat (limited to 'engines/toon')
-rw-r--r--engines/toon/toon.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/toon/toon.cpp b/engines/toon/toon.cpp
index ba455dd08c..09f865f798 100644
--- a/engines/toon/toon.cpp
+++ b/engines/toon/toon.cpp
@@ -593,11 +593,11 @@ enum OptionMenuSelections {
OPTIONMENUHOTSPOT_VOLUMEVOICESLIDER = 10,
OPTIONMENUHOTSPOT_SPEAKERBUTTON = 11,
OPTIONMENUHOTSPOT_SPEAKERLEVER = 12,
- OPTIONMENUHOTSPOT_VIDEO_MODE = 13,
+ OPTIONMENUHOTSPOT_VIDEO_MODE = 13
};
enum OptionMenuMasks {
- OPTIONMENUMASK_EVERYWHERE = 1,
+ OPTIONMENUMASK_EVERYWHERE = 1
};