aboutsummaryrefslogtreecommitdiff
path: root/engines/tucker/tucker.h
diff options
context:
space:
mode:
authorStrangerke2014-03-08 18:07:24 +0100
committerStrangerke2014-03-08 18:07:24 +0100
commit81815f0b8a9488e1627d371d07e08ff4ae0521a4 (patch)
tree717ce07d0f0e1b119817a8f0440f61978e9ea04e /engines/tucker/tucker.h
parent65b819305d5021cb98bf99459e9bf4e4b9edfc9f (diff)
downloadscummvm-rg350-81815f0b8a9488e1627d371d07e08ff4ae0521a4.tar.gz
scummvm-rg350-81815f0b8a9488e1627d371d07e08ff4ae0521a4.tar.bz2
scummvm-rg350-81815f0b8a9488e1627d371d07e08ff4ae0521a4.zip
TUCKER: Change the type of some variables to boolean
Diffstat (limited to 'engines/tucker/tucker.h')
-rw-r--r--engines/tucker/tucker.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/engines/tucker/tucker.h b/engines/tucker/tucker.h
index f798fac20f..639a4d90d3 100644
--- a/engines/tucker/tucker.h
+++ b/engines/tucker/tucker.h
@@ -232,7 +232,7 @@ enum CompressedSoundType {
class CompressedSound {
public:
- CompressedSound() : _compressedSoundType(-1) {}
+ CompressedSound() : _compressedSoundType(-1), _compressedSoundFlags(0) {}
void openFile();
void closeFile();
@@ -814,15 +814,15 @@ protected:
int _characterPrevBackFrontFacing;
int _characterAnimationNum;
int _noCharacterAnimationChange;
- int _changeBackgroundSprite;
int _characterSpriteAnimationFrameCounter;
int _locationMaskIgnore;
int _locationMaskType;
int _locationMaskCounter;
- int _updateSpriteFlag1;
- int _updateSpriteFlag2;
int _handleMapCounter;
bool _noPositionChangeAfterMap;
+ bool _changeBackgroundSprite;
+ bool _updateSpriteFlag1;
+ bool _updateSpriteFlag2;
int _mirroredDrawing;
uint8 *_loadLocBufPtr;