Skip to content

Commit

Permalink
InputManager: Warning fix
Browse files Browse the repository at this point in the history
  • Loading branch information
stenzek committed Apr 14, 2023
1 parent 2e3d924 commit 5fee6f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/frontend-common/input_manager.cpp
Expand Up @@ -967,7 +967,7 @@ void InputManager::ClearBindStateFromSource(InputBindingKey key)

if (current_mask == binding->full_mask)
{
std::get<InputButtonEventHandler>(binding->handler)(0.0f);
std::get<InputButtonEventHandler>(binding->handler)(0);
matched = true;
break;
}
Expand Down

0 comments on commit 5fee6f5

Please sign in to comment.