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
1 changed files with 1 additions and 1 deletions
|
@ -467,7 +467,7 @@ SDLState::SDLState() {
|
|||
return;
|
||||
}
|
||||
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);
|
||||
|
|
Loading…
Reference in a new issue