feat: prefer SDL.h instead of SDL/SDL.h on all supported platforms

This commit is contained in:
2023-03-26 22:54:53 -05:00
parent ca6d7f02a4
commit 159eaf8c50
2 changed files with 17 additions and 17 deletions

View File

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