summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/hid/controllers/debug_pad.cpp
diff options
context:
space:
mode:
authorliamwhite <liamwhite@users.noreply.github.com>2024-01-01 21:02:13 +0100
committerGitHub <noreply@github.com>2024-01-01 21:02:13 +0100
commit59d81ae614a42588dbd7eaf4b7e029ab168886c9 (patch)
treea5d636853c0871b700ebccf1c5d4fc6726046a31 /src/core/hle/service/hid/controllers/debug_pad.cpp
parentMerge pull request #12518 from t895/theme-settings (diff)
parentservice: hid: Use applet resource to get latest shared memory handle (diff)
downloadyuzu-59d81ae614a42588dbd7eaf4b7e029ab168886c9.tar
yuzu-59d81ae614a42588dbd7eaf4b7e029ab168886c9.tar.gz
yuzu-59d81ae614a42588dbd7eaf4b7e029ab168886c9.tar.bz2
yuzu-59d81ae614a42588dbd7eaf4b7e029ab168886c9.tar.lz
yuzu-59d81ae614a42588dbd7eaf4b7e029ab168886c9.tar.xz
yuzu-59d81ae614a42588dbd7eaf4b7e029ab168886c9.tar.zst
yuzu-59d81ae614a42588dbd7eaf4b7e029ab168886c9.zip
Diffstat (limited to 'src/core/hle/service/hid/controllers/debug_pad.cpp')
-rw-r--r--src/core/hle/service/hid/controllers/debug_pad.cpp16
1 files changed, 12 insertions, 4 deletions
diff --git a/src/core/hle/service/hid/controllers/debug_pad.cpp b/src/core/hle/service/hid/controllers/debug_pad.cpp
index 7d2370b4f..1811cf620 100644
--- a/src/core/hle/service/hid/controllers/debug_pad.cpp
+++ b/src/core/hle/service/hid/controllers/debug_pad.cpp
@@ -6,14 +6,13 @@
#include "core/hid/emulated_controller.h"
#include "core/hid/hid_core.h"
#include "core/hid/hid_types.h"
+#include "core/hle/service/hid/controllers/applet_resource.h"
#include "core/hle/service/hid/controllers/debug_pad.h"
-#include "core/hle/service/hid/controllers/shared_memory_format.h"
+#include "core/hle/service/hid/controllers/types/shared_memory_format.h"
namespace Service::HID {
-DebugPad::DebugPad(Core::HID::HIDCore& hid_core_,
- DebugPadSharedMemoryFormat& debug_pad_shared_memory)
- : ControllerBase{hid_core_}, shared_memory{debug_pad_shared_memory} {
+DebugPad::DebugPad(Core::HID::HIDCore& hid_core_) : ControllerBase{hid_core_} {
controller = hid_core.GetEmulatedController(Core::HID::NpadIdType::Other);
}
@@ -24,6 +23,15 @@ void DebugPad::OnInit() {}
void DebugPad::OnRelease() {}
void DebugPad::OnUpdate(const Core::Timing::CoreTiming& core_timing) {
+ const u64 aruid = applet_resource->GetActiveAruid();
+ auto* data = applet_resource->GetAruidData(aruid);
+
+ if (data == nullptr) {
+ return;
+ }
+
+ DebugPadSharedMemoryFormat& shared_memory = data->shared_memory_format->debug_pad;
+
if (!IsControllerActivated()) {
shared_memory.debug_pad_lifo.buffer_count = 0;
shared_memory.debug_pad_lifo.buffer_tail = 0;