diff options
author | Eugene Sandulenko | 2007-05-26 16:59:13 +0000 |
---|---|---|
committer | Eugene Sandulenko | 2007-05-26 16:59:13 +0000 |
commit | cdc949439b6db437cce428108ea8fc7e463054c8 (patch) | |
tree | f4bb2a0e71b131abf71fc871e6217fa8b60e32a8 | |
parent | 83c713d9b445bb67fe1dfcb2c9120184605e636c (diff) | |
download | scummvm-rg350-cdc949439b6db437cce428108ea8fc7e463054c8.tar.gz scummvm-rg350-cdc949439b6db437cce428108ea8fc7e463054c8.tar.bz2 scummvm-rg350-cdc949439b6db437cce428108ea8fc7e463054c8.zip |
oops
svn-id: r26944
-rw-r--r-- | engines/sword1/screen.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sword1/screen.cpp b/engines/sword1/screen.cpp index 9300956f56..605e1127cf 100644 --- a/engines/sword1/screen.cpp +++ b/engines/sword1/screen.cpp @@ -364,7 +364,7 @@ void Screen::draw(void) { for (uint16 cnty = 0; cnty < _scrnSizeY; cnty++) for (uint16 cntx = 0; cntx < _scrnSizeX; cntx++) { - if (*src = 0) + if (*src) if (!SwordEngine::_systemVars.isMac || *src != 255) // see bug #1701058 *dest = *src; dest++; |