aboutsummaryrefslogtreecommitdiff
path: root/engines/made/screen.cpp
diff options
context:
space:
mode:
authorFilippos Karapetis2008-05-20 18:19:32 +0000
committerFilippos Karapetis2008-05-20 18:19:32 +0000
commite20abe228d2457a6d38c8f78b99926827bf2de00 (patch)
treea19300fe9083a856978ebc826e217f9831ae9bfc /engines/made/screen.cpp
parenteb354bbe02572ea1b18084e424be54b7ad666bfc (diff)
downloadscummvm-rg350-e20abe228d2457a6d38c8f78b99926827bf2de00.tar.gz
scummvm-rg350-e20abe228d2457a6d38c8f78b99926827bf2de00.tar.bz2
scummvm-rg350-e20abe228d2457a6d38c8f78b99926827bf2de00.zip
Silenced an MSVC warning
svn-id: r32197
Diffstat (limited to 'engines/made/screen.cpp')
-rw-r--r--engines/made/screen.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/made/screen.cpp b/engines/made/screen.cpp
index 20327c3acf..4802908c05 100644
--- a/engines/made/screen.cpp
+++ b/engines/made/screen.cpp
@@ -143,7 +143,7 @@ void Screen::setExcludeArea(uint16 x1, uint16 y1, uint16 x2, uint16 y2) {
void Screen::drawSurface(Graphics::Surface *sourceSurface, int x, int y, int16 flipX, int16 flipY, int16 mask, const ClipInfo &clipInfo) {
- byte *source, *dest, *maskp;
+ byte *source, *dest, *maskp = 0;
int startX = 0;
int startY = 0;
int clipWidth = sourceSurface->w;