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 95b9431497
2 changed files with 6 additions and 2 deletions

View File

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

View File

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