summaryrefslogtreecommitdiff
path: root/psdl.c
diff options
context:
space:
mode:
authorGravatar waker <wakeroid@gmail.com>2009-07-06 03:11:23 +0200
committerGravatar waker <wakeroid@gmail.com>2009-07-06 03:11:23 +0200
commit0a7025537a8c0fe07e26f947740bcf1a1ab91f9b (patch)
tree2471d771f058d3780d6c78479114c93a6c5d0824 /psdl.c
parentd05d431ebad5767f3afa9b6c76639e83233e2d9c (diff)
44100Hz is now default
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 3bba6916..9e4388f5 100644
--- a/psdl.c
+++ b/psdl.c
@@ -26,7 +26,7 @@ int
psdl_init (void) {
SDL_AudioSpec obt;
int formats[] = { AUDIO_S16, -1 };
- int freqs[] = { 48000, 44100, -1 };
+ int freqs[] = { 44100, 48000, -1 };
const char *fmtnames[] = { "16 bit signed integer" };
int fmt, frq;
int success = 0;