diff options
| author | Ray <[email protected]> | 2017-05-08 02:47:44 +0200 |
|---|---|---|
| committer | Ray <[email protected]> | 2017-05-08 02:47:44 +0200 |
| commit | 822c2ddad59e9839aeb029f5a3dc26681188612b (patch) | |
| tree | d5a0bdd33a30bd1bf4c9a9f8a1a80f98f5d34b7d /src/audio.c | |
| parent | 83aba22e494ffbc78cb9cda6a8e39e82963026f4 (diff) | |
| download | raylib-822c2ddad59e9839aeb029f5a3dc26681188612b.tar.gz raylib-822c2ddad59e9839aeb029f5a3dc26681188612b.zip | |
Some defines tweaks for consistency
Diffstat (limited to 'src/audio.c')
| -rw-r--r-- | src/audio.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/audio.c b/src/audio.c index 2393e5a4..39befbbc 100644 --- a/src/audio.c +++ b/src/audio.c @@ -79,7 +79,7 @@ #include "utils.h" // Required for: fopen() Android mapping #endif -#ifdef __APPLE__ +#if defined(__APPLE__) #include "OpenAL/al.h" // OpenAL basic header #include "OpenAL/alc.h" // OpenAL context header (like OpenGL, OpenAL requires a context to work) #else @@ -1326,7 +1326,7 @@ void TraceLog(int msgType, const char *text, ...) va_list args; int traceDebugMsgs = 0; -#ifdef DO_NOT_TRACE_DEBUG_MSGS +#if defined(DO_NOT_TRACE_DEBUG_MSGS) traceDebugMsgs = 0; #endif |
