You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
joystick, controller, fix mistake, so that controllers were not able to be removed from an internal array due to not using JoystickLikeInput but JoystickInput
"Failed to remove removed {} from internal input vector (maybe he was not recognized in the first place)",
270
+
//this happens way to often, since Sdl outputs both SDL_JOYDEVICEREMOVED and SDL_CONTROLLERDEVICEREMOVED at the same time, in case of a controller, so the second time, this is reached :(
271
+
spdlog::debug(fmt::format(
272
+
"Failed to remove removed {} from internal input vector",
266
273
type == input::JoystickLikeType::Joystick ? "joystick" : "controller"
0 commit comments