(svn r16805) -Codechange: Remove 'unused' mixer channel flags, which always had the same value.

This commit is contained in:
peter1138
2009-07-13 10:17:22 +00:00
parent 5e3326d4d7
commit 1e50346943
3 changed files with 4 additions and 14 deletions

View File

@@ -111,7 +111,7 @@ static bool SetBankSource(MixerChannel *mc, const SoundEntry *sound)
assert(sound->bits_per_sample == 8 && sound->channels == 1 && sound->file_size != 0 && sound->rate != 0);
MxSetChannelRawSrc(mc, mem, sound->file_size, sound->rate, MX_AUTOFREE);
MxSetChannelRawSrc(mc, mem, sound->file_size, sound->rate);
return true;
}