diff options
author | sylvaintv | 2015-03-19 22:40:29 +0100 |
---|---|---|
committer | sylvaintv | 2015-03-19 22:40:29 +0100 |
commit | 15a4371b2d651a382cf077b1e1edef0b21c48685 (patch) | |
tree | b3df4cecea78614526ea59f8e84b24e2f3d31a59 | |
parent | e73faeee681a904751db28456a1320b74232ce43 (diff) | |
download | scummvm-rg350-15a4371b2d651a382cf077b1e1edef0b21c48685.tar.gz scummvm-rg350-15a4371b2d651a382cf077b1e1edef0b21c48685.tar.bz2 scummvm-rg350-15a4371b2d651a382cf077b1e1edef0b21c48685.zip |
TOON: Fix bad enum syntax
-rw-r--r-- | engines/toon/toon.cpp | 4 |
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 }; |