Ver código fonte

Fix using wrong variable by mistake

Susko3 2 meses atrás
pai
commit
765a2e9118
1 arquivos alterados com 1 adições e 1 exclusões
  1. 1 1
      src/joystick/SDL_gamepad.c

+ 1 - 1
src/joystick/SDL_gamepad.c

@@ -2619,7 +2619,7 @@ static int SDL_PrivateAddGamepadMapping(const char *mappingString, SDL_GamepadMa
             } else {
                 const char *hint_value = SDL_GetHint(hint);
                 if (!hint_value) {
-                    hint_value = SDL_getenv_unsafe(hint_value);
+                    hint_value = SDL_getenv_unsafe(hint);
                 }
                 value = SDL_GetStringBoolean(hint_value, default_value);
                 if (negate) {