ACCESS: MM - Fix TRAVEL array size

This commit is contained in:
Strangerke 2015-01-06 00:40:13 +01:00
parent 64d8d49b88
commit cc75fb5fe0
2 changed files with 3 additions and 2 deletions

View File

@ -94,7 +94,7 @@ AccessEngine::AccessEngine(OSystem *syst, const AccessGameDescription *gameDesc)
_cheatFl = false;
_restartFl = false;
for (int i = 0; i < 7; i++)
for (int i = 0; i < 60; i++)
TRAVEL[i] = 0;
STARTTRAVELITEM = STARTTRAVELBOX = 0;
for (int i = 0; i < 16; i++)

View File

@ -206,11 +206,12 @@ public:
uint32 _newDate;
int _flags[256];
int TRAVEL[7];
int TRAVEL[60];
int STARTTRAVELITEM;
int STARTTRAVELBOX;
int ASK[16];
int _startAboutItem;
bool _vidEnd;
bool _clearSummaryFlag;
bool _cheatFl;