diff options
author | Johannes Schickel | 2009-12-06 00:54:24 +0000 |
---|---|---|
committer | Johannes Schickel | 2009-12-06 00:54:24 +0000 |
commit | 3b7082c32b20eb33f8c9e6bbaf7ab4a79c3e7fa0 (patch) | |
tree | 8a139df30822b81ad64b5c4342f4ef217e5f1fa7 /engines | |
parent | f21810242e671da70ad92770d67a60f486b9ddb6 (diff) | |
download | scummvm-rg350-3b7082c32b20eb33f8c9e6bbaf7ab4a79c3e7fa0.tar.gz scummvm-rg350-3b7082c32b20eb33f8c9e6bbaf7ab4a79c3e7fa0.tar.bz2 scummvm-rg350-3b7082c32b20eb33f8c9e6bbaf7ab4a79c3e7fa0.zip |
Fix overflow of glyph count for CREDIT6.FNT, this fixes credits for Kyra1 floppy/FM-TOWNS/PC98.
svn-id: r46269
Diffstat (limited to 'engines')
-rw-r--r-- | engines/kyra/screen.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/kyra/screen.h b/engines/kyra/screen.h index 0f8208c791..8703ee3ee6 100644 --- a/engines/kyra/screen.h +++ b/engines/kyra/screen.h @@ -133,7 +133,7 @@ private: int _width, _height; - uint8 _numGlyphs; + int _numGlyphs; uint8 *_widthTable; uint8 *_heightTable; |