comparison src/audio/macosx/SDL_coreaudio.h @ 2056:ba0a03843db4

Whoops, wrong variable name.
author Ryan C. Gordon <icculus@icculus.org>
date Sat, 28 Oct 2006 07:45:33 +0000
parents 72cc2226d6a3
children 99210400e8b9
comparison
equal deleted inserted replaced
2055:72cc2226d6a3 2056:ba0a03843db4
30 #define _THIS SDL_AudioDevice *this 30 #define _THIS SDL_AudioDevice *this
31 31
32 struct SDL_PrivateAudioData 32 struct SDL_PrivateAudioData
33 { 33 {
34 AudioUnit audioUnit; 34 AudioUnit audioUnit;
35 int audioUnitInitialized; 35 int audioUnitOpened;
36 void *buffer; 36 void *buffer;
37 UInt32 bufferOffset; 37 UInt32 bufferOffset;
38 UInt32 bufferSize; 38 UInt32 bufferSize;
39 AudioDeviceID deviceID; 39 AudioDeviceID deviceID;
40 }; 40 };