diff options
author | Travis Howell | 2006-04-20 12:23:20 +0000 |
---|---|---|
committer | Travis Howell | 2006-04-20 12:23:20 +0000 |
commit | 5482ec5db676772714307b4df51ac4f461e764ad (patch) | |
tree | 5537d3e0d19bdc5d48df991aae6228e45ca982bc | |
parent | baca89c9be73f2ffed279d92d99b650b11e59a13 (diff) | |
download | scummvm-rg350-5482ec5db676772714307b4df51ac4f461e764ad.tar.gz scummvm-rg350-5482ec5db676772714307b4df51ac4f461e764ad.tar.bz2 scummvm-rg350-5482ec5db676772714307b4df51ac4f461e764ad.zip |
Add F9 key in FF, which toggles hitbox names
svn-id: r22059
-rw-r--r-- | engines/simon/simon.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/engines/simon/simon.cpp b/engines/simon/simon.cpp index 844802e550..dc9e6140fd 100644 --- a/engines/simon/simon.cpp +++ b/engines/simon/simon.cpp @@ -3038,6 +3038,10 @@ void SimonEngine::processSpecialKeys() { if (getGameType() == GType_FF && getBitFlag(76)) _variableArray[254] = 70; break; + case 67: // F9 + if (getGameType() == GType_FF) + setBitFlag(73, !getBitFlag(73)); + break; case 'p': pause(); break; |