AVALANCHE: Change constant into initialized variable according to the Pascal sources.

This commit is contained in:
uruk 2013-06-27 12:34:32 +02:00
parent 0a355ea368
commit 784a6aa821

View File

@ -44,10 +44,6 @@ namespace Avalanche {
const int16 maxobjs = 12; /* carry limit */ const int16 maxobjs = 12; /* carry limit */
const byte howlong = 1/*8*/; /* 18 ticks. */ 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 num = 32; /* Code for Num Lock */
const int16 mouse_size = 134; const int16 mouse_size = 134;
@ -624,6 +620,12 @@ namespace Avalanche {
r__wisewomans r__wisewomans
}; /* The Wise Woman. */ }; /* 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; Common::String current;