diff options
Diffstat (limited to 'engines/groovie/vdx.cpp')
-rw-r--r-- | engines/groovie/vdx.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/engines/groovie/vdx.cpp b/engines/groovie/vdx.cpp index 2e5cb2dbe9..46bd5f3472 100644 --- a/engines/groovie/vdx.cpp +++ b/engines/groovie/vdx.cpp @@ -49,8 +49,8 @@ void VDXPlayer::setOrigin(int16 x, int16 y) { } uint16 VDXPlayer::loadInternal() { - if (Common::isSpecialDebugLevelEnabled(kGroovieDebugVideo) || - Common::isSpecialDebugLevelEnabled(kGroovieDebugAll)) { + if (Common::isDebugChannelEnabled(kGroovieDebugVideo) || + Common::isDebugChannelEnabled(kGroovieDebugAll)) { int8 i; debugN(1, "Groovie::VDX: New VDX: bitflags are "); for (i = 15; i >= 0; i--) { @@ -162,7 +162,7 @@ bool VDXPlayer::playFrameInternal() { // Wait until the current frame can be shown - if (!Common::isSpecialDebugLevelEnabled(kGroovieDebugFast)) { + if (!Common::isDebugChannelEnabled(kGroovieDebugFast)) { waitFrame(); } // TODO: Move it to a better place @@ -493,7 +493,7 @@ void VDXPlayer::chunkSound(Common::ReadStream *in) { byte *data = new byte[60000]; int chunksize = in->read(data, 60000); - if (!Common::isSpecialDebugLevelEnabled(kGroovieDebugFast)) { + if (!Common::isDebugChannelEnabled(kGroovieDebugFast)) { _audioStream->queueBuffer(data, chunksize); } } |