diff options
author | Max Horn | 2008-12-03 11:05:07 +0000 |
---|---|---|
committer | Max Horn | 2008-12-03 11:05:07 +0000 |
commit | c290bb977c38bc939a42d968343f19445f117027 (patch) | |
tree | 616a5b166af284888dfe037b557ceaefc2808527 /engines | |
parent | 59dc18d9ef1a90110cff330f81693c0f2e4fc0e7 (diff) | |
download | scummvm-rg350-c290bb977c38bc939a42d968343f19445f117027.tar.gz scummvm-rg350-c290bb977c38bc939a42d968343f19445f117027.tar.bz2 scummvm-rg350-c290bb977c38bc939a42d968343f19445f117027.zip |
Fix compiler warning
svn-id: r35215
Diffstat (limited to 'engines')
-rw-r--r-- | engines/saga/sprite.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/saga/sprite.cpp b/engines/saga/sprite.cpp index 879299e290..2a4443916e 100644 --- a/engines/saga/sprite.cpp +++ b/engines/saga/sprite.cpp @@ -328,7 +328,7 @@ void Sprite::drawOccluded(Surface *ds, const Rect &clipRect, SpriteList &spriteL const byte *sourcePointer; byte *destPointer; byte *maskPointer; - int width = NULL; + int width = 0; int height = 0; int xAlign = 0; int yAlign = 0; |