mirror of
https://github.com/phoboslab/wipeout-rewrite
synced 2024-12-26 09:59:04 +01:00
Fix audio on big endian machines; see #56
This commit is contained in:
parent
78f452decf
commit
4c76aadf80
1 changed files with 1 additions and 1 deletions
|
@ -390,7 +390,7 @@ int main(int argc, char *argv[]) {
|
|||
|
||||
audio_device = SDL_OpenAudioDevice(NULL, 0, &(SDL_AudioSpec){
|
||||
.freq = 44100,
|
||||
.format = AUDIO_F32,
|
||||
.format = AUDIO_F32SYS,
|
||||
.channels = 2,
|
||||
.samples = 1024,
|
||||
.callback = platform_audio_callback
|
||||
|
|
Loading…
Reference in a new issue