diff options
Diffstat (limited to 'src/audio.c')
-rw-r--r-- | src/audio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/audio.c b/src/audio.c index 605bf796e..1679bd573 100644 --- a/src/audio.c +++ b/src/audio.c @@ -39,7 +39,7 @@ static ao_device * audio_device = NULL; static AudioFormat * audio_configFormat = NULL; -static void copyAudioFormat(AudioFormat * dest, AudioFormat * src) { +void copyAudioFormat(AudioFormat * dest, AudioFormat * src) { dest->sampleRate = src->sampleRate; dest->bits = src->bits; dest->channels = src->channels; |