diff options
| author | Joshua Reisenauer <[email protected]> | 2016-06-01 20:17:39 -0700 |
|---|---|---|
| committer | Joshua Reisenauer <[email protected]> | 2016-06-01 20:17:39 -0700 |
| commit | ae6adb173b0a89abd5185436029691ae33c1a727 (patch) | |
| tree | 1e5932f1df42368983844ca16f2c2ddba9cd4b3d /src/audio.c | |
| parent | 90e1ed2b5e54a9b6c69be3dd2b71d1e4f3632c33 (diff) | |
| parent | 17878550b1e2dde44fcd1e668c92ca2d96680a28 (diff) | |
| download | raylib-ae6adb173b0a89abd5185436029691ae33c1a727.tar.gz raylib-ae6adb173b0a89abd5185436029691ae33c1a727.zip | |
Merge remote-tracking branch 'refs/remotes/raysan5/develop' into develop
Diffstat (limited to 'src/audio.c')
| -rw-r--r-- | src/audio.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/audio.c b/src/audio.c index ceec5577..2302d6e1 100644 --- a/src/audio.c +++ b/src/audio.c @@ -37,24 +37,24 @@ #include "AL/al.h" // OpenAL basic header #include "AL/alc.h" // OpenAL context header (like OpenGL, OpenAL requires a context to work) -#include "AL/alext.h" // extensions for other format types +#include "AL/alext.h" // OpenAL extensions for other format types -#include <stdlib.h> // Declares malloc() and free() for memory management -#include <string.h> // Required for strcmp() -#include <stdio.h> // Used for .WAV loading +#include <stdlib.h> // Required for: malloc(), free() +#include <string.h> // Required for: strcmp(), strncmp() +#include <stdio.h> // Required for: FILE, fopen(), fclose(), fread() #if defined(AUDIO_STANDALONE) - #include <stdarg.h> // Used for functions with variable number of parameters (TraceLog()) + #include <stdarg.h> // Required for: va_list, va_start(), vfprintf(), va_end() #else - #include "utils.h" // rRES data decompression utility function - // NOTE: Includes Android fopen function map + #include "utils.h" // Required for: DecompressData() + // NOTE: Includes Android fopen() function map #endif //#define STB_VORBIS_HEADER_ONLY #include "stb_vorbis.h" // OGG loading functions #define JAR_XM_IMPLEMENTATION -#include "jar_xm.h" // For playing .xm files +#include "jar_xm.h" // XM loading functions #define JAR_MOD_IMPLEMENTATION #include "jar_mod.h" // For playing .mod files |
