aboutsummaryrefslogtreecommitdiff
path: root/engines/wintermute/base/base_game.h
diff options
context:
space:
mode:
authorTobia Tesan2016-03-29 11:09:54 +0200
committerTobia Tesan2016-12-26 12:20:56 +0100
commit42531fb71a3710e190f933c347110e7a468c28e6 (patch)
tree35b9611cede2667d338320526b0a42a45ffdbb93 /engines/wintermute/base/base_game.h
parenta496467fbe0687edc8f72bfb439fe046d44e4391 (diff)
downloadscummvm-rg350-42531fb71a3710e190f933c347110e7a468c28e6.tar.gz
scummvm-rg350-42531fb71a3710e190f933c347110e7a468c28e6.tar.bz2
scummvm-rg350-42531fb71a3710e190f933c347110e7a468c28e6.zip
WINTERMUTE: Add _bilinearFiltering attribute to BaseGame
Diffstat (limited to 'engines/wintermute/base/base_game.h')
-rw-r--r--engines/wintermute/base/base_game.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/engines/wintermute/base/base_game.h b/engines/wintermute/base/base_game.h
index 6aacc1feab..46484cc5ca 100644
--- a/engines/wintermute/base/base_game.h
+++ b/engines/wintermute/base/base_game.h
@@ -101,7 +101,7 @@ public:
virtual bool displayDebugInfo();
void setShowFPS(bool enabled) { _debugShowFPS = enabled; }
-
+ bool getBilinearFiltering() { return _bilinearFiltering; }
bool getSuspendedRendering() const { return _suspendedRendering; }
TTextEncoding _textEncoding;
@@ -279,6 +279,7 @@ protected:
VideoTheoraPlayer *_theoraPlayer;
private:
bool _debugShowFPS;
+ bool _bilinearFiltering;
void *_debugLogFile;
void DEBUG_DebugDisable();
void DEBUG_DebugEnable(const char *filename = nullptr);