[Scummvm-git-logs] scummvm master -> 9c4316b46b13fba8e3353646e5e4e25aa078f120

dreammaster dreammaster at scummvm.org
Mon Aug 7 03:49:31 CEST 2017


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
9c4316b46b TITANIC: Fix SuccUBus not always redirecting 'nowhere' glyphs to Bilge


Commit: 9c4316b46b13fba8e3353646e5e4e25aa078f120
    https://github.com/scummvm/scummvm/commit/9c4316b46b13fba8e3353646e5e4e25aa078f120
Author: Paul Gilbert (dreammaster at scummvm.org)
Date: 2017-08-06T21:49:23-04:00

Commit Message:
TITANIC: Fix SuccUBus not always redirecting 'nowhere' glyphs to Bilge

Changed paths:
    engines/titanic/room_flags.cpp


diff --git a/engines/titanic/room_flags.cpp b/engines/titanic/room_flags.cpp
index 57156f0..a28a4bd 100644
--- a/engines/titanic/room_flags.cpp
+++ b/engines/titanic/room_flags.cpp
@@ -76,7 +76,7 @@ const SuccUBusFlagsEntry SUCCUBUS_ROOMS[SUCCUBUS_ROOMS_SIZE] = {
 };
 
 int CRoomFlags::getConditionally() const {
-	if (getRoomArea() != 5 || getRoomCategory() != 5)
+	if (getRoomArea() != 5 || getRoomCategory())
 		return _data;
 	else
 		return 5;





More information about the Scummvm-git-logs mailing list