summaryrefslogtreecommitdiff
path: root/src/common/emu_window.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/common/emu_window.cpp')
-rw-r--r--src/common/emu_window.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/common/emu_window.cpp b/src/common/emu_window.cpp
index 4ec7b263a..48bb35db5 100644
--- a/src/common/emu_window.cpp
+++ b/src/common/emu_window.cpp
@@ -5,13 +5,13 @@
5#include "emu_window.h" 5#include "emu_window.h"
6 6
7void EmuWindow::KeyPressed(KeyMap::HostDeviceKey key) { 7void EmuWindow::KeyPressed(KeyMap::HostDeviceKey key) {
8 HID_User::PadState mapped_key = KeyMap::GetPadKey(key); 8 Service::HID::PadState mapped_key = KeyMap::GetPadKey(key);
9 9
10 HID_User::PadButtonPress(mapped_key); 10 Service::HID::PadButtonPress(mapped_key);
11} 11}
12 12
13void EmuWindow::KeyReleased(KeyMap::HostDeviceKey key) { 13void EmuWindow::KeyReleased(KeyMap::HostDeviceKey key) {
14 HID_User::PadState mapped_key = KeyMap::GetPadKey(key); 14 Service::HID::PadState mapped_key = KeyMap::GetPadKey(key);
15 15
16 HID_User::PadButtonRelease(mapped_key); 16 Service::HID::PadButtonRelease(mapped_key);
17} 17}