mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2025-02-16 23:30:15 -05:00
Changed audio freq from 32KHZ to 44KHZ on SDLAudioPlayer
This commit is contained in:
parent
1225a381ab
commit
da724c0632
@ -9,7 +9,7 @@ namespace Ship {
|
|||||||
}
|
}
|
||||||
SDL_AudioSpec want, have;
|
SDL_AudioSpec want, have;
|
||||||
SDL_zero(want);
|
SDL_zero(want);
|
||||||
want.freq = 32000;
|
want.freq = 44000;
|
||||||
want.format = AUDIO_S16;
|
want.format = AUDIO_S16;
|
||||||
want.channels = 2;
|
want.channels = 2;
|
||||||
want.samples = 1024;
|
want.samples = 1024;
|
||||||
|
Loading…
Reference in New Issue
Block a user