aboutsummaryrefslogtreecommitdiff
path: root/engines/groovie
diff options
context:
space:
mode:
authorMax Horn2013-12-10 18:34:48 +0100
committerMax Horn2014-03-30 14:38:02 +0200
commit4d02f67bd1dc3b7fc9eb8729f92a4d5d41a6831a (patch)
tree244c52e0f31f6d4afbff8ea46c08fc013729874e /engines/groovie
parentd91c8b9add255828bb363020077d91a49ebe3d99 (diff)
downloadscummvm-rg350-4d02f67bd1dc3b7fc9eb8729f92a4d5d41a6831a.tar.gz
scummvm-rg350-4d02f67bd1dc3b7fc9eb8729f92a4d5d41a6831a.tar.bz2
scummvm-rg350-4d02f67bd1dc3b7fc9eb8729f92a4d5d41a6831a.zip
ALL: Resolve multiple clang warnings
Diffstat (limited to 'engines/groovie')
-rw-r--r--engines/groovie/roq.cpp5
-rw-r--r--engines/groovie/roq.h1
2 files changed, 3 insertions, 3 deletions
diff --git a/engines/groovie/roq.cpp b/engines/groovie/roq.cpp
index cbaa992596..2776a0455d 100644
--- a/engines/groovie/roq.cpp
+++ b/engines/groovie/roq.cpp
@@ -43,8 +43,9 @@
namespace Groovie {
-ROQPlayer::ROQPlayer(GroovieEngine *vm) : VideoPlayer(vm), _codingTypeCount(0), _bg(&_vm->_graphicsMan->_background) {
- // _fg = &_vm->_graphicsMan->_foreground;
+ROQPlayer::ROQPlayer(GroovieEngine *vm) :
+ VideoPlayer(vm), _codingTypeCount(0),
+ _bg(&_vm->_graphicsMan->_background) {
// Create the work surfaces
_currBuf = new Graphics::Surface();
diff --git a/engines/groovie/roq.h b/engines/groovie/roq.h
index b5e63c2b4a..cd5e91c82b 100644
--- a/engines/groovie/roq.h
+++ b/engines/groovie/roq.h
@@ -75,7 +75,6 @@ private:
byte _codebook4[256 * 4];
// Buffers
- // Graphics::Surface *_fg, *_thirdBuf;
Graphics::Surface *_bg;
Graphics::Surface *_currBuf, *_prevBuf;
void buildShowBuf();