Removed unused variables from C source files.
--- a/src/audio/android/SDL_androidaudio.c Mon Apr 29 23:50:27 2013 +0200
+++ b/src/audio/android/SDL_androidaudio.c Mon Apr 29 23:54:22 2013 +0200
@@ -38,8 +38,7 @@
AndroidAUD_OpenDevice(_THIS, const char *devname, int iscapture)
{
SDL_AudioFormat test_format;
- int valid_datatype = 0;
-
+
if (iscapture) {
//TODO: implement capture
return SDL_SetError("Capture not supported on Android");
--- a/src/core/android/SDL_android.cpp Mon Apr 29 23:50:27 2013 +0200
+++ b/src/core/android/SDL_android.cpp Mon Apr 29 23:54:22 2013 +0200
@@ -422,7 +422,6 @@
{
int audioBufferFrames;
- int status;
JNIEnv *env = Android_JNI_GetEnv();
if (!env) {
@@ -496,7 +495,6 @@
extern "C" void Android_JNI_CloseAudioDevice()
{
- int status;
JNIEnv *env = Android_JNI_GetEnv();
env->CallStaticVoidMethod(mActivityClass, midAudioQuit);