tmp: nth attempt

This commit is contained in:
2023-03-26 22:09:09 -05:00
parent 1dfff5e0b0
commit 42b225924a
2 changed files with 17 additions and 11 deletions

View File

@@ -67,8 +67,13 @@
#include "imgui_impl_sdl.h"
// SDL
#include <SDL.h>
#include <SDL_syswm.h>
#if defined(__WIN32__)
#include <SDL2/SDL.h>
#include <SDL2/SDL_syswm.h>
#else
#include <SDL.h>
#include <SDL_syswm.h>
#endif
#if defined(__APPLE__)
#include <TargetConditionals.h>