diff options
author | archshift <admin@archshift.com> | 2015-01-18 15:07:48 -0800 |
---|---|---|
committer | archshift <admin@archshift.com> | 2015-01-21 13:31:10 -0800 |
commit | 1f109c6b497565afe99b9c9cfbb61de5a87e7374 (patch) | |
tree | 9eaedc4e6d764f3436a45ba05e79f16fec1ff299 /src/common/emu_window.cpp | |
parent | 8946df97b5113fbec4289b0a66cb565bdfd2136e (diff) |
Added HID_SPVR service and split HID_U implementation into service/hid/hid.xxx
Diffstat (limited to 'src/common/emu_window.cpp')
-rw-r--r-- | src/common/emu_window.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/common/emu_window.cpp b/src/common/emu_window.cpp index 4ec7b263a7..48bb35db5d 100644 --- a/src/common/emu_window.cpp +++ b/src/common/emu_window.cpp @@ -5,13 +5,13 @@ #include "emu_window.h" void EmuWindow::KeyPressed(KeyMap::HostDeviceKey key) { - HID_User::PadState mapped_key = KeyMap::GetPadKey(key); + Service::HID::PadState mapped_key = KeyMap::GetPadKey(key); - HID_User::PadButtonPress(mapped_key); + Service::HID::PadButtonPress(mapped_key); } void EmuWindow::KeyReleased(KeyMap::HostDeviceKey key) { - HID_User::PadState mapped_key = KeyMap::GetPadKey(key); + Service::HID::PadState mapped_key = KeyMap::GetPadKey(key); - HID_User::PadButtonRelease(mapped_key); + Service::HID::PadButtonRelease(mapped_key); } |