2014-09-09 00:46:02 -04:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
2014-12-17 00:38:14 -05:00
|
|
|
// Licensed under GPLv2 or any later version
|
2014-09-09 00:46:02 -04:00
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#include "emu_window.h"
|
|
|
|
|
|
|
|
void EmuWindow::KeyPressed(KeyMap::HostDeviceKey key) {
|
2015-01-18 18:07:48 -05:00
|
|
|
Service::HID::PadState mapped_key = KeyMap::GetPadKey(key);
|
2014-09-09 00:46:02 -04:00
|
|
|
|
2015-01-18 18:07:48 -05:00
|
|
|
Service::HID::PadButtonPress(mapped_key);
|
2014-09-09 00:46:02 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void EmuWindow::KeyReleased(KeyMap::HostDeviceKey key) {
|
2015-01-18 18:07:48 -05:00
|
|
|
Service::HID::PadState mapped_key = KeyMap::GetPadKey(key);
|
2014-09-09 00:46:02 -04:00
|
|
|
|
2015-01-18 18:07:48 -05:00
|
|
|
Service::HID::PadButtonRelease(mapped_key);
|
2014-09-09 00:46:02 -04:00
|
|
|
}
|