mirror of
https://github.com/libretro/scummvm.git
synced 2025-02-01 08:23:15 +00:00
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:
parent
5e8f44fcf2
commit
2f024e2701
@ -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];
|
||||
|
||||
|
@ -1909,7 +1909,7 @@ void SimonEngine::vc48_setPathFinder() {
|
||||
|
||||
int step;
|
||||
int y1, y2;
|
||||
int16 *vp;
|
||||
int32 *vp;
|
||||
|
||||
step = 2;
|
||||
if (c < 0) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user