aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorraysan5 <raysan5@gmail.com>2015-02-02 16:39:30 +0100
committerraysan5 <raysan5@gmail.com>2015-02-02 16:39:30 +0100
commit9ab67182349aa7fd3e85c090bfe1afd8c5f61339 (patch)
tree84eb95cc2f31aaec1fd30c6bc2fe2d9f402160b4 /src
parent42c92e4f2e2f12589434b91861fd98d11125e449 (diff)
downloadraylib-9ab67182349aa7fd3e85c090bfe1afd8c5f61339.tar.gz
raylib-9ab67182349aa7fd3e85c090bfe1afd8c5f61339.zip
Corrected bug, OGG loading on Android
Diffstat (limited to 'src')
-rw-r--r--src/stb_vorbis.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/stb_vorbis.h b/src/stb_vorbis.h
index eb3afe3b..8b91bd36 100644
--- a/src/stb_vorbis.h
+++ b/src/stb_vorbis.h
@@ -58,6 +58,11 @@
#include <stdio.h>
#endif
+// NOTE: Added to work with raylib on Android
+#if defined(PLATFORM_ANDROID)
+ #include "utils.h" // Android fopen function map
+#endif
+
#ifdef __linux
#include <alloca.h>
#endif