diff options
author | Filippos Karapetis | 2008-05-20 18:19:32 +0000 |
---|---|---|
committer | Filippos Karapetis | 2008-05-20 18:19:32 +0000 |
commit | e20abe228d2457a6d38c8f78b99926827bf2de00 (patch) | |
tree | a19300fe9083a856978ebc826e217f9831ae9bfc | |
parent | eb354bbe02572ea1b18084e424be54b7ad666bfc (diff) | |
download | scummvm-rg350-e20abe228d2457a6d38c8f78b99926827bf2de00.tar.gz scummvm-rg350-e20abe228d2457a6d38c8f78b99926827bf2de00.tar.bz2 scummvm-rg350-e20abe228d2457a6d38c8f78b99926827bf2de00.zip |
Silenced an MSVC warning
svn-id: r32197
-rw-r--r-- | engines/made/screen.cpp | 2 |
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; |