summaryrefslogtreecommitdiff
path: root/test/test-automation/src/runner/support.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/test-automation/src/runner/support.c')
-rw-r--r--test/test-automation/src/runner/support.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/test/test-automation/src/runner/support.c b/test/test-automation/src/runner/support.c
index 0f8e89d3f4..e5cbfa5991 100644
--- a/test/test-automation/src/runner/support.c
+++ b/test/test-automation/src/runner/support.c
@@ -25,28 +25,28 @@
int
PlatformSupportsAudio()
{
- int retValue = 0;
+ int retValue = 0;
#ifdef SDL_AUDIO_DRIVER_COREAUDIO
- retValue = 1;
+ retValue = 1;
#endif
#ifdef SDL_AUDIO_DRIVER_OSS
- retValue = 1;
+ retValue = 1;
#endif
- return retValue;
+ return retValue;
}
int
PlatformSupportsStdio()
{
- int retValue = 0;
+ int retValue = 0;
#ifdef HAVE_STDIO_H
- retValue = 1;
+ retValue = 1;
#endif
- return retValue;
+ return retValue;
}
@@ -64,12 +64,12 @@ SDL_test.h
int
PlatformSupportsOpenGL() {
- int retValue = 0;
+ int retValue = 0;
#define SDL_VIDEO_OPENGL
- retValue = 1;
+ retValue = 1;
#endif
- return retValue;
+ return retValue;
}
*/