diff options
author | Chris Robinson <[email protected]> | 2014-03-23 18:34:49 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2014-03-23 18:34:49 -0700 |
commit | 03fd2b826658bae6bd975957c4af26ae42481756 (patch) | |
tree | 38d2ab64d2f1432bdce8a979011ede5399dbf025 /Alc/midi/fluidsynth.c | |
parent | de5c54db0977c5a85aaf60bb53bd800bd76560b5 (diff) |
Remove setState from the MidiSynth vtable
Diffstat (limited to 'Alc/midi/fluidsynth.c')
-rw-r--r-- | Alc/midi/fluidsynth.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/Alc/midi/fluidsynth.c b/Alc/midi/fluidsynth.c index 504b42ec..b4788635 100644 --- a/Alc/midi/fluidsynth.c +++ b/Alc/midi/fluidsynth.c @@ -470,7 +470,6 @@ static void FSynth_Destruct(FSynth *self); static ALboolean FSynth_init(FSynth *self, ALCdevice *device); static ALenum FSynth_selectSoundfonts(FSynth *self, ALCcontext *context, ALsizei count, const ALuint *ids); static void FSynth_setGain(FSynth *self, ALfloat gain); -static void FSynth_setState(FSynth *self, ALenum state); static void FSynth_stop(FSynth *self); static void FSynth_reset(FSynth *self); static void FSynth_update(FSynth *self, ALCdevice *device); @@ -632,11 +631,6 @@ static void FSynth_setGain(FSynth *self, ALfloat gain) } -static void FSynth_setState(FSynth *self, ALenum state) -{ - MidiSynth_setState(STATIC_CAST(MidiSynth, self), state); -} - static void FSynth_stop(FSynth *self) { MidiSynth *synth = STATIC_CAST(MidiSynth, self); |