1
0
mirror of https://github.com/blupi-games/planetblupi synced 2024-12-30 10:15:36 +01:00

Fix emscripten build with SDL_mixer (include)

It's strange but only this SDL include needs to be prefixed
by SDL2/ directory.
This commit is contained in:
Mathieu Schroeter 2019-01-13 00:25:23 +01:00
parent 941bd91d25
commit d282d631af

View File

@ -25,7 +25,11 @@
#include <string>
#include <vector>
#ifdef EMSCRIPTEN
#include <SDL2/SDL_mixer.h>
#else /* EMSCRIPTEN */
#include <SDL_mixer.h>
#endif /* !EMSCRIPTEN */
#include "blupi.h"