diff options
author | Paul Gilbert | 2016-11-09 20:31:08 -0500 |
---|---|---|
committer | Paul Gilbert | 2016-11-09 20:31:08 -0500 |
commit | 5cdec1136a3dec82b025d5e9a626336e4f24fb61 (patch) | |
tree | a20fcdfa2f49575e16d95c9df2e0df12898e50fe /engines | |
parent | 56a23b9adaf806fa6d050e2cc2f11745006ac7be (diff) | |
download | scummvm-rg350-5cdec1136a3dec82b025d5e9a626336e4f24fb61.tar.gz scummvm-rg350-5cdec1136a3dec82b025d5e9a626336e4f24fb61.tar.bz2 scummvm-rg350-5cdec1136a3dec82b025d5e9a626336e4f24fb61.zip |
TITANIC: Fix toggle fragments of PET Room glyphs
Diffstat (limited to 'engines')
-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 27034aeeb7..ca2dac6bcd 100644 --- a/engines/titanic/pet_control/pet_rooms_glyphs.cpp +++ b/engines/titanic/pet_control/pet_rooms_glyphs.cpp @@ -108,7 +108,7 @@ void CPetRoomsGlyph::selectGlyph(const Point &topLeft, const Point &pt) { if (isShiftPressed) { int selection = getSelection(topLeft, pt); if (selection >= 0) - _roomFlags |= 1 << selection; + _roomFlags ^= 1 << selection; } updateTooltip(); |