summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/am/applets/software_keyboard.h
diff options
context:
space:
mode:
authorDavid <25727384+ogniK5377@users.noreply.github.com>2019-09-09 08:44:41 +0200
committerGitHub <noreply@github.com>2019-09-09 08:44:41 +0200
commit1487153e06e47744a7238a012735e44916d3169a (patch)
tree3be2575dc8eab73d83310f5d05d91fec8fa5c843 /src/core/hle/service/am/applets/software_keyboard.h
parentMerge pull request #2763 from lioncash/map-phys (diff)
parentservice/am: Remove usages of global system accessors (diff)
downloadyuzu-1487153e06e47744a7238a012735e44916d3169a.tar
yuzu-1487153e06e47744a7238a012735e44916d3169a.tar.gz
yuzu-1487153e06e47744a7238a012735e44916d3169a.tar.bz2
yuzu-1487153e06e47744a7238a012735e44916d3169a.tar.lz
yuzu-1487153e06e47744a7238a012735e44916d3169a.tar.xz
yuzu-1487153e06e47744a7238a012735e44916d3169a.tar.zst
yuzu-1487153e06e47744a7238a012735e44916d3169a.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/am/applets/software_keyboard.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/core/hle/service/am/applets/software_keyboard.h b/src/core/hle/service/am/applets/software_keyboard.h
index 0fbc43e51..ef4801fc6 100644
--- a/src/core/hle/service/am/applets/software_keyboard.h
+++ b/src/core/hle/service/am/applets/software_keyboard.h
@@ -16,6 +16,10 @@
union ResultCode;
+namespace Core {
+class System;
+}
+
namespace Service::AM::Applets {
enum class KeysetDisable : u32 {
@@ -55,7 +59,8 @@ static_assert(sizeof(KeyboardConfig) == 0x3E0, "KeyboardConfig has incorrect siz
class SoftwareKeyboard final : public Applet {
public:
- explicit SoftwareKeyboard(const Core::Frontend::SoftwareKeyboardApplet& frontend);
+ explicit SoftwareKeyboard(Core::System& system_,
+ const Core::Frontend::SoftwareKeyboardApplet& frontend_);
~SoftwareKeyboard() override;
void Initialize() override;