diff options
author | Matthew Hoops | 2015-06-06 17:14:24 -0400 |
---|---|---|
committer | Matthew Hoops | 2015-06-06 17:14:24 -0400 |
commit | 7eb663a45b7c6f1ae65ce118fe059c6e4b62f1a8 (patch) | |
tree | 9556877d7e711760b3dc8c87e9a2b91ac29a4068 | |
parent | 1cea5821524a50f58a0bd229bf68cf75a6f3d359 (diff) | |
download | scummvm-rg350-7eb663a45b7c6f1ae65ce118fe059c6e4b62f1a8.tar.gz scummvm-rg350-7eb663a45b7c6f1ae65ce118fe059c6e4b62f1a8.tar.bz2 scummvm-rg350-7eb663a45b7c6f1ae65ce118fe059c6e4b62f1a8.zip |
AUDIO: Fix another syntax error
-rw-r--r-- | audio/decoders/3do.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/audio/decoders/3do.cpp b/audio/decoders/3do.cpp index b3667acbd8..6d558d4c8c 100644 --- a/audio/decoders/3do.cpp +++ b/audio/decoders/3do.cpp @@ -205,7 +205,7 @@ Audio3DO_SDX2_Stream::Audio3DO_SDX2_Stream(Common::SeekableReadStream *stream, u _initialRead = true; reset(); -}; +} void Audio3DO_SDX2_Stream::reset() { memcpy(&_curDecoderData, &_initialDecoderData, sizeof(_curDecoderData)); |