diff options
-rw-r--r-- | engines/titanic/pet_control/pet_rooms_glyphs.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/titanic/pet_control/pet_rooms_glyphs.cpp b/engines/titanic/pet_control/pet_rooms_glyphs.cpp index 851ca0cb7a..d9e19b1f67 100644 --- a/engines/titanic/pet_control/pet_rooms_glyphs.cpp +++ b/engines/titanic/pet_control/pet_rooms_glyphs.cpp @@ -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) { |