(Griffin) Add Emscripten includes - in case Emscripten will ever
support Griffin
This commit is contained in:
parent
ef3040a78b
commit
ee35e5382f
|
@ -105,6 +105,8 @@ VIDEO CONTEXT
|
|||
#include "../gfx/context/bbqnx_ctx.c"
|
||||
#elif defined(IOS) || defined(OSX)
|
||||
#include "../gfx/context/apple_gl_ctx.c"
|
||||
#elif defined(EMSCRIPTEN)
|
||||
#include "../gfx/context/emscriptenegl_ctx.c"
|
||||
#endif
|
||||
|
||||
|
||||
|
@ -298,6 +300,8 @@ INPUT
|
|||
#include "../apple/common/apple_joypad.c"
|
||||
#elif defined(__BLACKBERRY_QNX__)
|
||||
#include "../blackberry-qnx/qnx_input.c"
|
||||
#elif defined(EMSCRIPTEN)
|
||||
#include "../input/rwebinput_input.c"
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_OSK
|
||||
|
@ -383,6 +387,8 @@ AUDIO
|
|||
#include "../xenon/xenon360_audio.c"
|
||||
#elif defined(GEKKO)
|
||||
#include "../gx/gx_audio.c"
|
||||
#elif defined(EMSCRIPTEN)
|
||||
#include "../audio/rwebaudio.c"
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_XAUDIO
|
||||
|
|
Loading…
Reference in New Issue