forked from mirror/OpenTTD
(svn r16805) -Codechange: Remove 'unused' mixer channel flags, which always had the same value.
This commit is contained in:
@@ -7,18 +7,11 @@
|
||||
|
||||
struct MixerChannel;
|
||||
|
||||
enum {
|
||||
MX_AUTOFREE = 1,
|
||||
// MX_8BIT = 2,
|
||||
// MX_STEREO = 4,
|
||||
// MX_UNSIGNED = 8,
|
||||
};
|
||||
|
||||
bool MxInitialize(uint rate);
|
||||
void MxMixSamples(void *buffer, uint samples);
|
||||
|
||||
MixerChannel *MxAllocateChannel();
|
||||
void MxSetChannelRawSrc(MixerChannel *mc, int8 *mem, size_t size, uint rate, uint flags);
|
||||
void MxSetChannelRawSrc(MixerChannel *mc, int8 *mem, size_t size, uint rate);
|
||||
void MxSetChannelVolume(MixerChannel *mc, uint left, uint right);
|
||||
void MxActivateChannel(MixerChannel*);
|
||||
|
||||
|
Reference in New Issue
Block a user