diff --git a/source-code/source/plugins/TLAC/Components/Input/InputEmulator.cpp b/source-code/source/plugins/TLAC/Components/Input/InputEmulator.cpp index 194b9f3..ec29b6f 100644 --- a/source-code/source/plugins/TLAC/Components/Input/InputEmulator.cpp +++ b/source-code/source/plugins/TLAC/Components/Input/InputEmulator.cpp @@ -175,6 +175,12 @@ namespace TLAC::Components // repress held down buttons to not block input //inputState->Down.Buttons ^= inputState->Tapped.Buttons; + + if (CoinBinding->AnyTapped()) + addCoin(); + + if (WireframeBinding->AnyTapped()) + toggleWireframe(); } HoldState InputEmulator::GetHoldState() @@ -306,12 +312,6 @@ namespace TLAC::Components if (buttonTestFunc(RightBinding)) buttons |= JVS_R; - if (CoinBinding->AnyTapped()) - addCoin(); - - if (WireframeBinding->AnyTapped()) - toggleWireframe(); - return buttons; }