Increase size of variable array entries, to prevent overflows that often occur in FF. The original FF used unsigned variable arrays, but Simon 1/2 requires a signed variable array.

svn-id: r21905
This commit is contained in:
Travis Howell 2006-04-15 12:19:38 +00:00
parent 5e8f44fcf2
commit 2f024e2701
2 changed files with 3 additions and 3 deletions

View File

@ -385,8 +385,8 @@ protected:
uint16 _speechIdArray4[40];
uint16 _bitArray[48];
int16 _variableArray[256];
int16 _variableArray2[256];
int32 _variableArray[256];
int32 _variableArray2[256];
WindowBlock *_windowArray[16];

View File

@ -1909,7 +1909,7 @@ void SimonEngine::vc48_setPathFinder() {
int step;
int y1, y2;
int16 *vp;
int32 *vp;
step = 2;
if (c < 0) {