diff options
author | Marcus Comstedt | 2005-06-27 21:44:40 +0000 |
---|---|---|
committer | Marcus Comstedt | 2005-06-27 21:44:40 +0000 |
commit | c3f975c7b88fb5e4589640562e3700d2918538a6 (patch) | |
tree | ca59269d4b0c4af658164f7903b57ded7ad2a370 /scumm | |
parent | 6d70218f35f3af8fcada1f20f98a2af0afbe9775 (diff) | |
download | scummvm-rg350-c3f975c7b88fb5e4589640562e3700d2918538a6.tar.gz scummvm-rg350-c3f975c7b88fb5e4589640562e3700d2918538a6.tar.bz2 scummvm-rg350-c3f975c7b88fb5e4589640562e3700d2918538a6.zip |
Better test for disabled scalers...
svn-id: r18474
Diffstat (limited to 'scumm')
-rw-r--r-- | scumm/thumbnail.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/thumbnail.cpp b/scumm/thumbnail.cpp index c9691b9597..46fc9f2fc0 100644 --- a/scumm/thumbnail.cpp +++ b/scumm/thumbnail.cpp @@ -102,7 +102,7 @@ Graphics::Surface *ScummEngine::loadThumbnail(Common::InSaveFile *file) { void ScummEngine::saveThumbnail(Common::OutSaveFile *file) { Graphics::Surface thumb; -#ifndef DISABLE_HQ_SCALERS // fcn has dep on HQ_SCALERS: thumbnail gets created as empty +#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)); |