diff options
author | Travis Howell | 2006-05-03 06:07:26 +0000 |
---|---|---|
committer | Travis Howell | 2006-05-03 06:07:26 +0000 |
commit | 6e603cce875d0a1b390c574b26125f6149654e85 (patch) | |
tree | bbd66e38495fa4ce0d59ebd6166c60d5738e56ed /engines/simon | |
parent | 2c700faffac1ee219f0ebe34adf1ecf01f4b835b (diff) | |
download | scummvm-rg350-6e603cce875d0a1b390c574b26125f6149654e85.tar.gz scummvm-rg350-6e603cce875d0a1b390c574b26125f6149654e85.tar.bz2 scummvm-rg350-6e603cce875d0a1b390c574b26125f6149654e85.zip |
Correct size of GPVCount/PVCount vars
svn-id: r22294
Diffstat (limited to 'engines/simon')
-rw-r--r-- | engines/simon/simon.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/engines/simon/simon.h b/engines/simon/simon.h index dc31681517..015150ef17 100644 --- a/engines/simon/simon.h +++ b/engines/simon/simon.h @@ -425,12 +425,12 @@ protected: const uint16 *_pathFindArray[100]; uint8 _pathValues[400]; - uint8 _PVCount; - uint8 _GPVCount; + uint16 _PVCount; + uint16 _GPVCount; uint8 _pathValues1[400]; - uint8 _PVCount1; - uint8 _GPVCount1; + uint16 _PVCount1; + uint16 _GPVCount1; uint8 _paletteBackup[1024]; uint8 _palette[1024]; |