yuzu: Update overlay applet

This commit is contained in:
german77
2021-09-20 20:50:32 -05:00
committed by Narr the Reg
parent 510c7d2953
commit 1b82d5bb4f
2 changed files with 21 additions and 16 deletions

View File

@ -13,14 +13,16 @@
#include "common/common_types.h"
enum class HIDButton : u8;
class InputInterpreter;
namespace Core {
class System;
}
namespace Core::HID {
enum class NpadButton : u64;
}
namespace Ui {
class OverlayDialog;
}
@ -79,7 +81,7 @@ private:
*
* @tparam HIDButton The list of buttons that can be converted into keyboard input.
*/
template <HIDButton... T>
template <Core::HID::NpadButton... T>
void HandleButtonPressedOnce();
/**
@ -87,7 +89,7 @@ private:
*
* @param button The button press to process.
*/
void TranslateButtonPress(HIDButton button);
void TranslateButtonPress(Core::HID::NpadButton button);
void StartInputThread();
void StopInputThread();