It seems the OnPress event of a bound key via ModMenu is fired multiple times (UMM log):
twice after starting the game
three times after loading a save
When I then exit to the main menu everything seems to be normal.
Tested with game v2.0.3i and ModMenu v1.2.5
Edit:
RenewRegisteredBindings doesn't remove the callback binding in m_BindingCallbacks. Rebinding the key just adds the same callback to m_BindingCallbacks.
It seems the
OnPress
event of a bound key via ModMenu is fired multiple times (UMM log):When I then exit to the main menu everything seems to be normal.
Tested with game v2.0.3i and ModMenu v1.2.5
Edit:
RenewRegisteredBindings
doesn't remove the callback binding inm_BindingCallbacks
. Rebinding the key just adds the same callback tom_BindingCallbacks
.A
DoUnbind
before binding the key removes the callback.