Skip to content
Snippets Groups Projects
Commit c49a5ed8 authored by Marco Z's avatar Marco Z
Browse files

Better I_InitJoystick log message

parent d094a70e
No related branches found
No related tags found
No related merge requests found
...@@ -1400,7 +1400,7 @@ void I_InitJoystick(void) ...@@ -1400,7 +1400,7 @@ void I_InitJoystick(void)
if (SDL_WasInit(SDL_INIT_JOYSTICK) == 0) if (SDL_WasInit(SDL_INIT_JOYSTICK) == 0)
{ {
CONS_Printf("Initing joy system\n"); CONS_Printf("I_InitJoystick()...\n");
SDL_SetHintWithPriority("SDL_XINPUT_ENABLED", "0", SDL_HINT_OVERRIDE); SDL_SetHintWithPriority("SDL_XINPUT_ENABLED", "0", SDL_HINT_OVERRIDE);
if (SDL_InitSubSystem(SDL_INIT_JOYSTICK) == -1) if (SDL_InitSubSystem(SDL_INIT_JOYSTICK) == -1)
{ {
...@@ -1443,7 +1443,7 @@ void I_InitJoystick2(void) ...@@ -1443,7 +1443,7 @@ void I_InitJoystick2(void)
if (SDL_WasInit(SDL_INIT_JOYSTICK) == 0) if (SDL_WasInit(SDL_INIT_JOYSTICK) == 0)
{ {
CONS_Printf("Initing joy system\n"); CONS_Printf("I_InitJoystick2()...\n");
SDL_SetHintWithPriority("SDL_XINPUT_ENABLED", "0", SDL_HINT_OVERRIDE); SDL_SetHintWithPriority("SDL_XINPUT_ENABLED", "0", SDL_HINT_OVERRIDE);
if (SDL_InitSubSystem(SDL_INIT_JOYSTICK) == -1) if (SDL_InitSubSystem(SDL_INIT_JOYSTICK) == -1)
{ {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment