sdl12-compat: renamed SDL12_COMPAT_DEBUG_LOGGING to SDL12COMPAT_DEBUG_LOGGING for consistency

From dd127db58761ede740f45d7bd38592bd81b3520c Mon Sep 17 00:00:00 2001
From: Ozkan Sezer <[EMAIL REDACTED]>
Date: Sun, 7 Nov 2021 12:50:20 +0300
Subject: [PATCH] renamed SDL12_COMPAT_DEBUG_LOGGING to
 SDL12COMPAT_DEBUG_LOGGING for consistency

---
 src/SDL12_compat.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/SDL12_compat.c b/src/SDL12_compat.c
index 4eb8c5c..49d87f4 100644
--- a/src/SDL12_compat.c
+++ b/src/SDL12_compat.c
@@ -1142,7 +1142,7 @@ LoadSDL20(void)
                 if (!okay) {
                     sprintf_fn(loaderror, "SDL2 %d.%d.%d library is too old.", v.major, v.minor, v.patch);
                 } else {
-                    const char *envr = SDL20_getenv("SDL12_COMPAT_DEBUG_LOGGING");
+                    const char *envr = SDL20_getenv("SDL12COMPAT_DEBUG_LOGGING");
                     const SDL_bool debug_logging = (!envr || (SDL20_atoi(envr) == 0)) ? SDL_FALSE : SDL_TRUE;
                     #if ENABLE_FIXMES == 1
                     PrintFixmes = debug_logging;
@@ -1637,7 +1637,7 @@ Init12VidModes(void)
     int i, j;
     SDL12_Rect prev_mode = { 0, 0, 0, 0 }, current_mode = { 0, 0, 0, 0 };
     /* We only want to enable fake modes if OpenGL Logical Scaling is enabled. */
-    char *env = SDL20_getenv("SDL12COMPAT_OPENGL_SCALING");
+    const char *env = SDL20_getenv("SDL12COMPAT_OPENGL_SCALING");
     SDL_bool use_fake_modes = (!env || SDL20_atoi(env)) ? SDL_TRUE : SDL_FALSE;
 
     if (VideoModesCount > 0) {