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