mirror of
https://git.h3cjp.net/H3cJP/yuzu.git
synced 2024-11-11 14:03:24 +00:00
input_common/sdl/sdl_impl: Correct logging string in SDLState constructor
If this path was ever taken, a runtime exception would occur due to the lack of a formatting specifier to insert the error code into the format string.
This commit is contained in:
parent
cfac942e63
commit
5ccf2a7b82
|
@ -467,7 +467,7 @@ SDLState::SDLState() {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (SDL_SetHint(SDL_HINT_JOYSTICK_ALLOW_BACKGROUND_EVENTS, "1") == SDL_FALSE) {
|
if (SDL_SetHint(SDL_HINT_JOYSTICK_ALLOW_BACKGROUND_EVENTS, "1") == SDL_FALSE) {
|
||||||
LOG_ERROR(Input, "Failed to set Hint for background events", SDL_GetError());
|
LOG_ERROR(Input, "Failed to set hint for background events with: {}", SDL_GetError());
|
||||||
}
|
}
|
||||||
|
|
||||||
SDL_AddEventWatch(&SDLEventWatcher, this);
|
SDL_AddEventWatch(&SDLEventWatcher, this);
|
||||||
|
|
Loading…
Reference in a new issue