diff options
author | Chris Robinson <[email protected]> | 2014-01-03 19:35:55 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2014-01-03 19:35:55 -0800 |
commit | 3a31402b1ea3cb62da6ddcac3f41570c7cfaa687 (patch) | |
tree | 51e614db41863544da09323b5569b966b59a7771 /Alc/midi/base.h | |
parent | d9846f321987230e16e09ac643f50dba893abd70 (diff) |
Remove an unused method
Diffstat (limited to 'Alc/midi/base.h')
-rw-r--r-- | Alc/midi/base.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Alc/midi/base.h b/Alc/midi/base.h index 7dc80395..e9245887 100644 --- a/Alc/midi/base.h +++ b/Alc/midi/base.h @@ -52,7 +52,6 @@ typedef struct MidiSynth { void MidiSynth_Construct(MidiSynth *self, ALCdevice *device); void MidiSynth_Destruct(MidiSynth *self); -const char *MidiSynth_getFontName(const MidiSynth *self, const char *filename); ALenum MidiSynth_selectSoundfonts(MidiSynth *self, ALCdevice *device, ALsizei count, const ALuint *ids); inline void MidiSynth_setGain(MidiSynth *self, ALfloat gain) { self->Gain = gain; } inline ALfloat MidiSynth_getGain(const MidiSynth *self) { return self->Gain; } |