Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
coreaudio: Replaced an int with an SDL_bool.
- Loading branch information
Showing
with
2 additions
and
2 deletions.
-
+1
−1
src/audio/coreaudio/SDL_coreaudio.c
-
+1
−1
src/audio/coreaudio/SDL_coreaudio.h
|
@@ -564,7 +564,7 @@ prepare_audiounit(_THIS, void *handle, int iscapture, |
|
|
result = AudioComponentInstanceNew(comp, &this->hidden->audioUnit); |
|
|
CHECK_RESULT("AudioComponentInstanceNew"); |
|
|
|
|
|
this->hidden->audioUnitOpened = 1; |
|
|
this->hidden->audioUnitOpened = SDL_TRUE; |
|
|
|
|
|
if (iscapture) { /* have to do EnableIO only for capture devices. */ |
|
|
UInt32 enable = 1; |
|
|
|
@@ -44,7 +44,7 @@ |
|
|
struct SDL_PrivateAudioData |
|
|
{ |
|
|
AudioUnit audioUnit; |
|
|
int audioUnitOpened; |
|
|
SDL_bool audioUnitOpened; |
|
|
void *buffer; |
|
|
UInt32 bufferOffset; |
|
|
UInt32 bufferSize; |
|
|