Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Commit

Permalink
Fixed compile
Browse files Browse the repository at this point in the history
  • Loading branch information
slouken committed Jul 11, 2013
1 parent 431d269 commit 614f8e6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/audio/pulseaudio/SDL_pulseaudio.c
Expand Up @@ -367,10 +367,10 @@ PULSEAUDIO_OpenDevice(_THIS, const char *devname, int iscapture)
paspec.format = PA_SAMPLE_S32BE;
break;
case AUDIO_F32LSB:
paspec.format = PA_SAMPLE_FLOAT32LE
paspec.format = PA_SAMPLE_FLOAT32LE;
break;
case AUDIO_F32MSB:
paspec.format = PA_SAMPLE_FLOAT32BE
paspec.format = PA_SAMPLE_FLOAT32BE;
break;
default:
paspec.format = PA_SAMPLE_INVALID;
Expand Down

0 comments on commit 614f8e6

Please sign in to comment.