summaryrefslogtreecommitdiffhomepage
path: root/src/raudio.c
diff options
context:
space:
mode:
authorRay <[email protected]>2023-02-01 11:45:42 +0100
committerRay <[email protected]>2023-02-01 11:45:42 +0100
commitd827a65e59c8474b4899ff7034dcc4d17b2fb4c0 (patch)
treec187e608e98255d485e207e5c11565cfa35753cb /src/raudio.c
parenta151cbd37ace03a377fd582a29f660dd0ea9f97a (diff)
downloadraylib-d827a65e59c8474b4899ff7034dcc4d17b2fb4c0.tar.gz
raylib-d827a65e59c8474b4899ff7034dcc4d17b2fb4c0.zip
Update external libraries
Switch to official `stb_vorbis.c` instead of using an outdated fork
Diffstat (limited to 'src/raudio.c')
-rw-r--r--src/raudio.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/raudio.c b/src/raudio.c
index 46d8223d..591d6f69 100644
--- a/src/raudio.c
+++ b/src/raudio.c
@@ -198,8 +198,7 @@ typedef struct tagBITMAPINFOHEADER {
#if defined(SUPPORT_FILEFORMAT_OGG)
// TODO: Remap stb_vorbis malloc()/free() calls to RL_MALLOC/RL_FREE
- #define STB_VORBIS_IMPLEMENTATION
- #include "external/stb_vorbis.h" // OGG loading functions
+ #include "external/stb_vorbis.c" // OGG loading functions
#endif
#if defined(SUPPORT_FILEFORMAT_XM)