mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2025-08-20 21:33:40 -07:00
Changed audio freq from 32KHZ to 44KHZ on SDLAudioPlayer
This commit is contained in:
parent
1225a381ab
commit
da724c0632
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue