diff options
| author | Max Horn | 2005-05-10 23:48:48 +0000 | 
|---|---|---|
| committer | Max Horn | 2005-05-10 23:48:48 +0000 | 
| commit | 1a615346abab8f234c3dbd1c55e78b179bca9d87 (patch) | |
| tree | f687ac73ffbfa29088a403b6311bb4db13265fde /sound/voc.cpp | |
| parent | 72f4c03b0b9a6918a359b967ebc400a2701981d9 (diff) | |
| download | scummvm-rg350-1a615346abab8f234c3dbd1c55e78b179bca9d87.tar.gz scummvm-rg350-1a615346abab8f234c3dbd1c55e78b179bca9d87.tar.bz2 scummvm-rg350-1a615346abab8f234c3dbd1c55e78b179bca9d87.zip  | |
Moved class SoundMixer to Audio::Mixer (didn't call the namespace 'Sound' because we already have many classes with that name)
svn-id: r18039
Diffstat (limited to 'sound/voc.cpp')
| -rw-r--r-- | sound/voc.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/voc.cpp b/sound/voc.cpp index 12c2c520a5..5df91afad3 100644 --- a/sound/voc.cpp +++ b/sound/voc.cpp @@ -135,6 +135,6 @@ AudioStream *makeVOCStream(Common::ReadStream &stream) {  	if (!data)  		return 0; -	return makeLinearInputStream(rate, SoundMixer::FLAG_AUTOFREE | SoundMixer::FLAG_UNSIGNED, data, size, 0, 0); +	return makeLinearInputStream(rate, Audio::Mixer::FLAG_AUTOFREE | Audio::Mixer::FLAG_UNSIGNED, data, size, 0, 0);  }  | 
