aboutsummaryrefslogtreecommitdiff
path: root/scumm
diff options
context:
space:
mode:
authorEugene Sandulenko2005-09-20 18:16:09 +0000
committerEugene Sandulenko2005-09-20 18:16:09 +0000
commitaa33153569afda655b988a4c9a1efee261ca107e (patch)
tree7a9cbf46280a62bc8c582fa77e9939d4d8f883e6 /scumm
parenta0cff37f0697cd0082ca5fabac38159b265f4471 (diff)
downloadscummvm-rg350-aa33153569afda655b988a4c9a1efee261ca107e.tar.gz
scummvm-rg350-aa33153569afda655b988a4c9a1efee261ca107e.tar.bz2
scummvm-rg350-aa33153569afda655b988a4c9a1efee261ca107e.zip
Normalize use of DISABLE_SCALERS. Now it really disables all scalers
except essential Normal1x. Also thumbnails get compiled unconditionally so we get them on all platforms, even those which never display them. Sorted out mess brought to sdl backend by epoc maintainer. He misused __SYMBIAN32__ where DISABLE_SCALERS is more appropriate. svn-id: r18850
Diffstat (limited to 'scumm')
-rw-r--r--scumm/thumbnail.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/scumm/thumbnail.cpp b/scumm/thumbnail.cpp
index b558059bc1..2733939cca 100644
--- a/scumm/thumbnail.cpp
+++ b/scumm/thumbnail.cpp
@@ -102,9 +102,7 @@ Graphics::Surface *ScummEngine::loadThumbnail(Common::InSaveFile *file) {
void ScummEngine::saveThumbnail(Common::OutSaveFile *file) {
Graphics::Surface thumb;
-#if !defined(DISABLE_SCALERS) && !defined(DISABLE_HQ_SCALERS) // fcn has dep on HQ_SCALERS: thumbnail gets created as empty
if (!createThumbnailFromScreen(&thumb))
-#endif
thumb.create(kThumbnailWidth, kThumbnailHeight2, sizeof(uint16));
ThumbnailHeader header;