[HID] Added drivers filter for GetState

This commit is contained in:
Gliniak
2025-01-04 21:40:08 +01:00
parent d6ed8af4e7
commit 4584794e24
4 changed files with 11 additions and 6 deletions

View File

@@ -118,7 +118,7 @@ dword_result_t XamInputGetState_entry(dword_t user_index, dword_t flags,
auto input_system = kernel_state()->emulator()->input_system();
auto lock = input_system->lock();
return input_system->GetState(user_index, input_state);
return input_system->GetState(user_index, flags, input_state);
}
DECLARE_XAM_EXPORT2(XamInputGetState, kInput, kImplemented, kHighFrequency);