diff options
author | Chris Robinson <[email protected]> | 2010-12-09 23:41:54 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2010-12-09 23:41:54 -0800 |
commit | 09130e5dcd7094b0726984c608a4bb764277eb6b (patch) | |
tree | 97062f8d421e82ab1f76886bfe23d580b0b98720 | |
parent | b87447787a5bdbbc3daeafa65feeac8bc9049c23 (diff) |
Fix some AudioIO backend warnings
-rw-r--r-- | Alc/solaris.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/Alc/solaris.c b/Alc/solaris.c index a617554f..b8f9ef6e 100644 --- a/Alc/solaris.c +++ b/Alc/solaris.c @@ -53,7 +53,6 @@ static ALuint SolarisProc(ALvoid *ptr) { ALCdevice *pDevice = (ALCdevice*)ptr; solaris_data *data = (solaris_data*)pDevice->ExtraData; - int remaining = 0; ALint frameSize; int wrote; @@ -221,13 +220,10 @@ static void solaris_stop_playback(ALCdevice *device) } -static ALCboolean solaris_open_capture(ALCdevice *device, const ALCchar *deviceName, ALCuint frequency, ALCenum format, ALCsizei SampleSize) +static ALCboolean solaris_open_capture(ALCdevice *device, const ALCchar *deviceName) { (void)device; (void)deviceName; - (void)frequency; - (void)format; - (void)SampleSize; return ALC_FALSE; } |