mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-15 14:18:37 +00:00
TITANIC: Fix infinite recursion in CPetRoomsGlyph
This commit is contained in:
parent
a736282cf8
commit
903dc7d1d2
@ -174,7 +174,7 @@ void CPetRoomsGlyph::saveGlyph(SimpleFile *file, int indent) {
|
||||
bool CPetRoomsGlyph::proc33(CPetGlyph *glyph) {
|
||||
CPetRoomsGlyph *roomGlyph = static_cast<CPetRoomsGlyph *>(glyph);
|
||||
|
||||
return proc33(glyph) && _roomFlags == roomGlyph->_roomFlags;
|
||||
return CPetGlyph::proc33(glyph) && _roomFlags == roomGlyph->_roomFlags;
|
||||
}
|
||||
|
||||
void CPetRoomsGlyph::loadFlags(SimpleFile *file, int val) {
|
||||
|
Loading…
Reference in New Issue
Block a user