diff options
author | uruk | 2013-06-27 12:34:32 +0200 |
---|---|---|
committer | uruk | 2013-06-27 12:34:32 +0200 |
commit | 784a6aa821cebf39f44a60e419aa500dc946c943 (patch) | |
tree | 66416a2e415997e99735fb1b3ac25aab9f809240 /engines/avalanche | |
parent | 0a355ea3687b27d7330cfd0b3d32abba743dacbc (diff) | |
download | scummvm-rg350-784a6aa821cebf39f44a60e419aa500dc946c943.tar.gz scummvm-rg350-784a6aa821cebf39f44a60e419aa500dc946c943.tar.bz2 scummvm-rg350-784a6aa821cebf39f44a60e419aa500dc946c943.zip |
AVALANCHE: Change constant into initialized variable according to the Pascal sources.
Diffstat (limited to 'engines/avalanche')
-rw-r--r-- | engines/avalanche/gyro2.h | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/engines/avalanche/gyro2.h b/engines/avalanche/gyro2.h index cd5644ec4b..0836dfbb6c 100644 --- a/engines/avalanche/gyro2.h +++ b/engines/avalanche/gyro2.h @@ -44,10 +44,6 @@ namespace Avalanche { const int16 maxobjs = 12; /* carry limit */ const byte howlong = 1/*8*/; /* 18 ticks. */ - const bool oncandopageswap = true; - /* Variable constant for overriding the ability of On to switch pages. - * You may know better than On which page to switch to. */ - const int16 num = 32; /* Code for Num Lock */ const int16 mouse_size = 134; @@ -624,6 +620,12 @@ namespace Avalanche { r__wisewomans }; /* The Wise Woman. */ + bool oncandopageswap = true; + /* Variable constant for overriding the ability of On to switch pages. + * You may know better than On which page to switch to. */ + + + Common::String current; |