1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
|
diff --git a/libretro-common/audio/audio_mixer.c b/libretro-common/audio/audio_mixer.c
index 9638906b73..42d99daab2 100644
--- a/libretro-common/audio/audio_mixer.c
+++ b/libretro-common/audio/audio_mixer.c
@@ -39,8 +39,6 @@
#ifdef HAVE_STB_VORBIS
#define STB_VORBIS_NO_PUSHDATA_API
-#define STB_VORBIS_NO_STDIO
-#define STB_VORBIS_NO_CRT
#include <stb/stb_vorbis.h>
#endif
diff --git a/gfx/drivers_font_renderer/stb.c b/gfx/drivers_font_renderer/stb.c
index 20e3ca2efd..befe2c7c31 100644
--- a/gfx/drivers_font_renderer/stb.c
+++ b/gfx/drivers_font_renderer/stb.c
@@ -29,8 +29,8 @@
#define STBTT_STATIC
#define STBRP_STATIC
#define STATIC static INLINE
-#include "../../deps/stb/stb_rect_pack.h"
-#include "../../deps/stb/stb_truetype.h"
+#include <stb/stb_rect_pack.h>
+#include <stb/stb_truetype.h>
#undef STATIC
#endif
diff --git a/gfx/drivers_font_renderer/stb_unicode.c b/gfx/drivers_font_renderer/stb_unicode.c
index 7e8ca737cd..6bb082487c 100644
--- a/gfx/drivers_font_renderer/stb_unicode.c
+++ b/gfx/drivers_font_renderer/stb_unicode.c
@@ -33,8 +33,8 @@
#define STBTT_STATIC
#define STBRP_STATIC
#define STATIC static INLINE
-#include "../../deps/stb/stb_rect_pack.h"
-#include "../../deps/stb/stb_truetype.h"
+#include <stb/stb_rect_pack.h>
+#include <stb/stb_truetype.h>
#undef STATIC
#endif
|