diff options
author | Paweł Kołodziejski | 2003-04-25 04:30:49 +0000 |
---|---|---|
committer | Paweł Kołodziejski | 2003-04-25 04:30:49 +0000 |
commit | a1c43eae082ffe30bd6af4f96219937426f0b02b (patch) | |
tree | 3eea5766264a6ef197e09b1b400aeedc4f3b7c0d /scumm | |
parent | 3da2a094437ff157cfacbe50664200a53b710c5d (diff) | |
download | scummvm-rg350-a1c43eae082ffe30bd6af4f96219937426f0b02b.tar.gz scummvm-rg350-a1c43eae082ffe30bd6af4f96219937426f0b02b.tar.bz2 scummvm-rg350-a1c43eae082ffe30bd6af4f96219937426f0b02b.zip |
fixed warning under VC6
svn-id: r7101
Diffstat (limited to 'scumm')
-rw-r--r-- | scumm/costume.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/costume.cpp b/scumm/costume.cpp index 693c96a93a..7fb8e4101f 100644 --- a/scumm/costume.cpp +++ b/scumm/costume.cpp @@ -86,7 +86,7 @@ byte CostumeRenderer::mainRoutine(int slot, int frame) { byte newAmiCost; int ex1, ex2; - newAmiCost = (_vm->_features & GF_AMIGA); + newAmiCost = (_vm->_features & GF_AMIGA) != 0; CHECK_HEAP _maskval = 0xF; |