aboutsummaryrefslogtreecommitdiff
path: root/engines/gob
diff options
context:
space:
mode:
authorAndrew Kurushin2006-05-13 08:39:12 +0000
committerAndrew Kurushin2006-05-13 08:39:12 +0000
commit45b249ee6012772179efe556f92de74163235aea (patch)
tree0b4b284518c25cbe20249c4cc93992cb8b5021b5 /engines/gob
parent9baf8a72f937b827be0cb5760b78b80ed1aa4127 (diff)
downloadscummvm-rg350-45b249ee6012772179efe556f92de74163235aea.tar.gz
scummvm-rg350-45b249ee6012772179efe556f92de74163235aea.tar.bz2
scummvm-rg350-45b249ee6012772179efe556f92de74163235aea.zip
fix VS2005 compilation warnings
svn-id: r22431
Diffstat (limited to 'engines/gob')
-rw-r--r--engines/gob/music.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/gob/music.h b/engines/gob/music.h
index 19c7b2d28f..d736bc9ff5 100644
--- a/engines/gob/music.h
+++ b/engines/gob/music.h
@@ -42,7 +42,7 @@ public:
void lock() { _mutex.lock(); }
void unlock() { _mutex.unlock(); }
bool playing() { return _playing; }
- bool getRepeating(void) { return _repCount; }
+ bool getRepeating(void) { return _repCount != 0; }
void setRepeating (int32 repCount) { _repCount = repCount; }
void startPlay(void);
void stopPlay(void) { _mutex.lock(); _playing = false; _mutex.unlock(); }