aboutsummaryrefslogtreecommitdiff
path: root/engines/mohawk/video/qt_player.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/mohawk/video/qt_player.cpp')
-rw-r--r--engines/mohawk/video/qt_player.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/mohawk/video/qt_player.cpp b/engines/mohawk/video/qt_player.cpp
index 4ddb8d2ee8..e53818fe2e 100644
--- a/engines/mohawk/video/qt_player.cpp
+++ b/engines/mohawk/video/qt_player.cpp
@@ -1161,11 +1161,11 @@ Audio::AudioStream *QTPlayer::createAudioStream(Common::SeekableReadStream *stre
// Fortunately, most of the audio used in Myst videos is raw...
uint16 flags = 0;
if (_streams[_audioStreamIndex]->codec_tag == MKID_BE('raw '))
- flags |= Audio::Mixer::FLAG_UNSIGNED;
+ flags |= Audio::FLAG_UNSIGNED;
if (_streams[_audioStreamIndex]->channels == 2)
- flags |= Audio::Mixer::FLAG_STEREO;
+ flags |= Audio::FLAG_STEREO;
if (_streams[_audioStreamIndex]->bits_per_sample == 16)
- flags |= Audio::Mixer::FLAG_16BITS;
+ flags |= Audio::FLAG_16BITS;
uint32 dataSize = stream->size();
byte *data = (byte *)malloc(dataSize);
stream->read(data, dataSize);