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
I stumbled upon this interesting detail that get_key_pressed is mutable, which means it breaks some behaviors. get_gamepad_button_pressed isn't mutable, so why is get_key_pressed?
Hi!
I stumbled upon this interesting detail that
get_key_pressed
is mutable, which means it breaks some behaviors.get_gamepad_button_pressed
isn't mutable, so why isget_key_pressed
?I made an extended function which calls exactly the same thing and it doesn't need to be mutable at all.
Code of said issue:
https://github.com/deltaphc/raylib-rs/blob/master/raylib/src/core/input.rs#L36
where it is a mutable reference to self, as no mutability is required. This can be removed.
The text was updated successfully, but these errors were encountered: