From b90fed094f0936dcaddb9de26d527fb845372100 Mon Sep 17 00:00:00 2001 From: Susko3 Date: Tue, 19 Mar 2024 21:33:07 +0100 Subject: [PATCH] Standardise header includes Changes "SDL_*.h" and "SDL3/SDL_*.h" to --- include/SDL3/SDL_camera.h | 2 +- include/SDL3/SDL_egl.h | 2 +- include/SDL3/SDL_pen.h | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/include/SDL3/SDL_camera.h b/include/SDL3/SDL_camera.h index ebfafc4cd..717de3c76 100644 --- a/include/SDL3/SDL_camera.h +++ b/include/SDL3/SDL_camera.h @@ -28,7 +28,7 @@ #ifndef SDL_camera_h_ #define SDL_camera_h_ -#include "SDL3/SDL_video.h" +#include #include /* Set up for C function definitions, even when using C++ */ diff --git a/include/SDL3/SDL_egl.h b/include/SDL3/SDL_egl.h index 1e6f73678..6234a74a3 100644 --- a/include/SDL3/SDL_egl.h +++ b/include/SDL3/SDL_egl.h @@ -25,7 +25,7 @@ * This is a simple file to encapsulate the EGL API headers. */ -#include "SDL_platform_defines.h" +#include #if !defined(_MSC_VER) && !defined(SDL_PLATFORM_ANDROID) && !defined(SDL_USE_BUILTIN_OPENGL_DEFINITIONS) diff --git a/include/SDL3/SDL_pen.h b/include/SDL3/SDL_pen.h index 2f368af4c..57744599f 100644 --- a/include/SDL3/SDL_pen.h +++ b/include/SDL3/SDL_pen.h @@ -45,9 +45,9 @@ #ifndef SDL_pen_h_ #define SDL_pen_h_ -#include "SDL_error.h" -#include "SDL_guid.h" -#include "SDL_stdinc.h" +#include +#include +#include /* Set up for C function definitions, even when using C++ */ #ifdef __cplusplus