diff options
author | Max Horn | 2007-07-15 19:26:00 +0000 |
---|---|---|
committer | Max Horn | 2007-07-15 19:26:00 +0000 |
commit | 86d015c0551f98aec3924d85c2507462ae0ba73a (patch) | |
tree | 694fed8c8157a1b98e4edad5d6872a1ed703246b /engines/scumm | |
parent | f4c0b853cc8453acac0c9e6f6901c0056a2288fa (diff) | |
download | scummvm-rg350-86d015c0551f98aec3924d85c2507462ae0ba73a.tar.gz scummvm-rg350-86d015c0551f98aec3924d85c2507462ae0ba73a.tar.bz2 scummvm-rg350-86d015c0551f98aec3924d85c2507462ae0ba73a.zip |
Added FIXME comments regarding use of AudioStream::openStreamFile
svn-id: r28112
Diffstat (limited to 'engines/scumm')
-rw-r--r-- | engines/scumm/smush/smush_player.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/engines/scumm/smush/smush_player.cpp b/engines/scumm/smush/smush_player.cpp index e7663c61c1..ce39302e25 100644 --- a/engines/scumm/smush/smush_player.cpp +++ b/engines/scumm/smush/smush_player.cpp @@ -1178,6 +1178,9 @@ void SmushPlayer::tryCmpFile(const char *filename) { char fname[260]; #endif Common::File *file = new Common::File(); + + // FIXME: How about using AudioStream::openStreamFile instead of the code below? + #ifdef USE_VORBIS memcpy(fname, filename, i - filename); strcpy(fname + (i - filename), ".ogg"); |