aboutsummaryrefslogtreecommitdiff
path: root/engines/wintermute/base/base_game.cpp
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.cpp
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.cpp')
-rw-r--r--engines/wintermute/base/base_game.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/engines/wintermute/base/base_game.cpp b/engines/wintermute/base/base_game.cpp
index ef3cc2d84f..24779b9793 100644
--- a/engines/wintermute/base/base_game.cpp
+++ b/engines/wintermute/base/base_game.cpp
@@ -361,6 +361,12 @@ bool BaseGame::initConfManSettings() {
_debugShowFPS = false;
}
+ if (ConfMan.hasKey("bilinear_filtering")) {
+ _bilinearFiltering = ConfMan.getBool("bilinear_filtering");
+ } else {
+ _bilinearFiltering = false;
+ }
+
if (ConfMan.hasKey("disable_smartcache")) {
_smartCache = ConfMan.getBool("disable_smartcache");
} else {