Minor format tweaks

This commit is contained in:
Ray
2025-07-26 12:50:29 +02:00
parent 8343aed4f6
commit eb7f8912f8
4 changed files with 12 additions and 11 deletions

View File

@ -57,8 +57,8 @@
#include "SDL3/SDL.h"
#elif USING_SDL2_PROJECT
#include "SDL2/SDL.h"
#else
#include "SDL.h"
#else
#include "SDL.h"
#endif
#if defined(GRAPHICS_API_OPENGL_ES2)
@ -66,12 +66,12 @@
//#include "SDL_opengles2.h"
#else
// SDL OpenGL functionality (if required, instead of internal renderer)
#ifdef USING_SDL3_PROJECT
#include "SDL3/SDL_opengl.h"
#ifdef USING_SDL3_PROJECT
#include "SDL3/SDL_opengl.h"
#elif USING_SDL2_PROJECT
#include "SDL2/SDL_opengl.h"
#else
#include "SDL_opengl.h"
#include "SDL2/SDL_opengl.h"
#else
#include "SDL_opengl.h"
#endif
#endif