diff options
author | Eugene Sandulenko | 2004-12-16 15:27:21 +0000 |
---|---|---|
committer | Eugene Sandulenko | 2004-12-16 15:27:21 +0000 |
commit | 5029e9aaae2a8d1b033f2ef38c7ad28d0e1b180f (patch) | |
tree | 2d68e40c0fdc9f949efc1414df319ec3d8c07986 | |
parent | 55549cd3b2415b5b5d7b7a66223c39fa25446116 (diff) | |
download | scummvm-rg350-5029e9aaae2a8d1b033f2ef38c7ad28d0e1b180f.tar.gz scummvm-rg350-5029e9aaae2a8d1b033f2ef38c7ad28d0e1b180f.tar.bz2 scummvm-rg350-5029e9aaae2a8d1b033f2ef38c7ad28d0e1b180f.zip |
Fix compilation when USE_MPEG2 is undefined.
svn-id: r16081
-rw-r--r-- | sword1/animation.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sword1/animation.cpp b/sword1/animation.cpp index 07788b45f8..786775e68b 100644 --- a/sword1/animation.cpp +++ b/sword1/animation.cpp @@ -213,8 +213,9 @@ bool MoviePlayer::initOverlays(uint32 id) { for (uint16 cnt = 0; cnt < 256; cnt++) _introPal[cnt] = _sys->RGBToColor(pal[cnt * 3 + 0], pal[cnt * 3 + 1], pal[cnt * 3 + 2]); } - return true; #endif + + return true; } SplittedAudioStream::SplittedAudioStream(void) { |