diff options
author | Paweł Kołodziejski | 2004-01-06 17:23:19 +0000 |
---|---|---|
committer | Paweł Kołodziejski | 2004-01-06 17:23:19 +0000 |
commit | 2c2ae5f59ff309950fe5ffabbdb309b89f7531b8 (patch) | |
tree | 3593ee9b68cec10e8ffd2b4a61b0084433317887 | |
parent | e90f846df9f1d0e31b933d1cd0a8c28c0fbb7d1f (diff) | |
download | scummvm-rg350-2c2ae5f59ff309950fe5ffabbdb309b89f7531b8.tar.gz scummvm-rg350-2c2ae5f59ff309950fe5ffabbdb309b89f7531b8.tar.bz2 scummvm-rg350-2c2ae5f59ff309950fe5ffabbdb309b89f7531b8.zip |
fixed warning
svn-id: r12186
-rw-r--r-- | scumm/verbs.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/verbs.cpp b/scumm/verbs.cpp index c6fce315f9..9814e98373 100644 --- a/scumm/verbs.cpp +++ b/scumm/verbs.cpp @@ -499,7 +499,7 @@ void ScummEngine::drawVerbBitmap(int verb, int x, int y) { gdi.enableZBuffer(); - vs->hasTwoBuffers = twobufs; + vs->hasTwoBuffers = twobufs != 0; } int ScummEngine::getVerbSlot(int id, int mode) const { |