diff options
author | D G Turner | 2018-07-29 08:25:37 +0100 |
---|---|---|
committer | D G Turner | 2018-07-29 08:25:37 +0100 |
commit | 51a2685e3ff1c6e689651e67444e5456c5977e21 (patch) | |
tree | e4bfca792474d19b98294c4c5a111b13f21dfc4b /engines | |
parent | 6ae2bff1c78275e45f80d317b1364377d1c0e90a (diff) | |
download | scummvm-rg350-51a2685e3ff1c6e689651e67444e5456c5977e21.tar.gz scummvm-rg350-51a2685e3ff1c6e689651e67444e5456c5977e21.tar.bz2 scummvm-rg350-51a2685e3ff1c6e689651e67444e5456c5977e21.zip |
SUPERNOVA: Fix Unused Variable Compiler Warnings.
Diffstat (limited to 'engines')
-rw-r--r-- | engines/supernova/rooms.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/engines/supernova/rooms.h b/engines/supernova/rooms.h index 5c9b283dcd..b76c01f4a1 100644 --- a/engines/supernova/rooms.h +++ b/engines/supernova/rooms.h @@ -819,8 +819,9 @@ private: StringId _dialog3[4]; StringId _dialog4[3]; - bool _found; - bool _flug; + // FIXME: Remove following unused bool variables? + //bool _found; + //bool _flug; }; class ArsanoMeetup3 : public Room { public: |