From fb8e7c535a88838cc8ae364cd2a099df6316d3b0 Mon Sep 17 00:00:00 2001 From: Paul Cercueil Date: Tue, 30 Apr 2019 23:12:15 +0200 Subject: [PATCH] Fix include of modplug.h The include path should be , since the library doesn't provide any specific include path in its pkg-config file. Signed-off-by: Paul Cercueil --- music_modplug.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/music_modplug.h b/music_modplug.h index 92cbafd..49abbb0 100644 --- a/music_modplug.h +++ b/music_modplug.h @@ -1,6 +1,7 @@ #ifdef MODPLUG_MUSIC -#include "modplug.h" +#include + #include "SDL_rwops.h" #include "SDL_audio.h" #include "SDL_mixer.h" -- 2.21.0.593.g511ec345e18