mirror of
https://github.com/libretro/scummvm.git
synced 2025-04-05 00:01:55 +00:00
Fixed bug #730030: INDY3: Crash when loading new savegames
svn-id: r7240
This commit is contained in:
parent
f62a4ae83e
commit
c77cbc5cb4
@ -29,7 +29,9 @@ void CharsetRendererCommon::setCurID(byte id) {
|
||||
_curId = id;
|
||||
|
||||
_fontPtr = _vm->getResourceAddress(rtCharset, id);
|
||||
assert(_fontPtr);
|
||||
if (_fontPtr == 0)
|
||||
error("CharsetRendererCommon::setCurID: charset %d not found!\n", id);
|
||||
|
||||
if (_vm->_features & GF_AFTER_V3) {
|
||||
_nbChars = _fontPtr[4];
|
||||
_fontPtr += 6 + _nbChars;
|
||||
|
@ -558,7 +558,10 @@ void Scumm::ensureResourceLoaded(int type, int i) {
|
||||
i = _resourceMapper[i & 0x7F];
|
||||
}
|
||||
|
||||
if (i == 0)
|
||||
// FIXME - TODO: This check used to be "i==0". However, that causes
|
||||
// problems when using this function to ensure charset 0 is loaded.
|
||||
// Quesetion: Why was this check like that in the first place?
|
||||
if (i < 0)
|
||||
return;
|
||||
|
||||
if (i <= res.num[type])
|
||||
|
Loading…
x
Reference in New Issue
Block a user