summaryrefslogtreecommitdiff
path: root/psdl.c
diff options
context:
space:
mode:
authorGravatar Alexey Yakovenko <wakeroid@gmail.com>2009-07-17 20:03:24 +0200
committerGravatar Alexey Yakovenko <wakeroid@gmail.com>2009-07-17 20:03:24 +0200
commitbf4c1afea0afe5519e53d3b7f5a8e07c5df1c344 (patch)
treed6f4ec71a403042cea61630f3dd00e8575f2c230 /psdl.c
parentf43f9b570a2ab8629bd4b203a28f27b7852ccb50 (diff)
fixed gme codec
Diffstat (limited to 'psdl.c')
-rw-r--r--psdl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/psdl.c b/psdl.c
index 31ed3c3d..04975b79 100644
--- a/psdl.c
+++ b/psdl.c
@@ -12,7 +12,7 @@ int
psdl_init (void) {
SDL_AudioSpec obt;
int formats[] = { AUDIO_S16, -1 };
- int freqs[] = { 44100, 48000, -1 };
+ int freqs[] = { 48000, 44100, 96000, 22050, -1 };
const char *fmtnames[] = { "16 bit signed integer" };
int fmt, frq;
int success = 0;