aboutsummaryrefslogtreecommitdiff
path: root/engines/wintermute/graphics/transparent_surface.h
diff options
context:
space:
mode:
authorTobia Tesan2013-08-01 01:42:51 +0200
committerTobia Tesan2013-08-01 02:17:32 +0200
commite3381cff0db4ebc8be62a2f7f2b228cd55cd23bc (patch)
treea0c8bd95b44af92865096391c84d51f71d141e54 /engines/wintermute/graphics/transparent_surface.h
parent204c75bc2733fb5b4251e73d6859398dd50f942a (diff)
downloadscummvm-rg350-e3381cff0db4ebc8be62a2f7f2b228cd55cd23bc.tar.gz
scummvm-rg350-e3381cff0db4ebc8be62a2f7f2b228cd55cd23bc.tar.bz2
scummvm-rg350-e3381cff0db4ebc8be62a2f7f2b228cd55cd23bc.zip
WINTERMUTE: #ifdef ENABLE_BILINEAR -> #if ENBABLE_BILINEAR
Diffstat (limited to 'engines/wintermute/graphics/transparent_surface.h')
-rw-r--r--engines/wintermute/graphics/transparent_surface.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/wintermute/graphics/transparent_surface.h b/engines/wintermute/graphics/transparent_surface.h
index 7182967aa6..7b5579f389 100644
--- a/engines/wintermute/graphics/transparent_surface.h
+++ b/engines/wintermute/graphics/transparent_surface.h
@@ -53,7 +53,7 @@ struct TransparentSurface : public Graphics::Surface {
void setColorKey(char r, char g, char b);
void disableColorKey();
-#ifdef ENABLE_BILINEAR
+#if ENABLE_BILINEAR
static void copyPixelBilinear(float projX, float projY, int dstX, int dstY, const Common::Rect &srcRect, const Common::Rect &dstRect, const TransparentSurface *src, TransparentSurface *dst);
#else
static void copyPixelNearestNeighbor(float projX, float projY, int dstX, int dstY, const Common::Rect &srcRect, const Common::Rect &dstRect, const TransparentSurface *src, TransparentSurface *dst);