Merge branch 'unstable' of github.com:djoslin0/sm64ex-coop into unstable

This commit is contained in:
MysterD 2022-02-17 18:27:19 -08:00
commit 0a54b7ebed
2 changed files with 6 additions and 2 deletions

View File

@ -1,8 +1,11 @@
#ifdef HAVE_SDL2 #ifdef HAVE_SDL2
#include <SDL2/SDL.h> #include <SDL2/SDL.h>
#else #else
#ifdef HAVE_SDL
#include <SDL/SDL.h> #include <SDL/SDL.h>
#endif #endif
#endif
#include "controller_bind_mapping.h" #include "controller_bind_mapping.h"
#include "controller_api.h" #include "controller_api.h"

View File

@ -1,8 +1,8 @@
// Adapted from PeachyPeach's sm64pc-omm // Adapted from PeachyPeach's sm64pc-omm
#if defined(_WIN32) #if defined(_WIN32)
#ifdef HAVE_SDL2
#include <SDL2/SDL.h> #include <SDL2/SDL.h>
#include <stdio.h> #include <stdio.h>
#include <windows.h> #include <windows.h>
#include <dbghelp.h> #include <dbghelp.h>
@ -492,3 +492,4 @@ __attribute__((constructor)) static void init_crash_handler() {
} }
#endif #endif
#endif