From 75a693347b57dc50d4b32e9a72dab6c40e29ea93 Mon Sep 17 00:00:00 2001 From: Misa Date: Wed, 25 Oct 2023 15:48:04 -0700 Subject: [PATCH] vlog: Slim `SDL.h` include down to `SDL_log.h` The entirety of SDL doesn't need to be included, only the SDL_log header does. --- desktop_version/src/Vlogging.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/desktop_version/src/Vlogging.c b/desktop_version/src/Vlogging.c index 253e3369..ae046c87 100644 --- a/desktop_version/src/Vlogging.c +++ b/desktop_version/src/Vlogging.c @@ -8,7 +8,7 @@ #endif #ifdef VLOG_USE_SDL -# include +# include #elif defined(_WIN32) # define WIN32_LEAN_AND_MEAN # include