summaryrefslogtreecommitdiffstats
path: root/src/hid_core/resources/touch_screen/touch_screen_resource.cpp
diff options
context:
space:
mode:
authorgerman77 <juangerman-13@hotmail.com>2024-02-05 23:59:13 +0100
committergerman77 <juangerman-13@hotmail.com>2024-02-06 00:17:21 +0100
commit372897aac42192bb0290e7ac74e1ae8d15f53a55 (patch)
tree7cbd5f742c67fcfadd6d34ae807d940d178c1da2 /src/hid_core/resources/touch_screen/touch_screen_resource.cpp
parentMerge pull request #12905 from liamwhite/hwc-release (diff)
downloadyuzu-372897aac42192bb0290e7ac74e1ae8d15f53a55.tar
yuzu-372897aac42192bb0290e7ac74e1ae8d15f53a55.tar.gz
yuzu-372897aac42192bb0290e7ac74e1ae8d15f53a55.tar.bz2
yuzu-372897aac42192bb0290e7ac74e1ae8d15f53a55.tar.lz
yuzu-372897aac42192bb0290e7ac74e1ae8d15f53a55.tar.xz
yuzu-372897aac42192bb0290e7ac74e1ae8d15f53a55.tar.zst
yuzu-372897aac42192bb0290e7ac74e1ae8d15f53a55.zip
Diffstat (limited to 'src/hid_core/resources/touch_screen/touch_screen_resource.cpp')
-rw-r--r--src/hid_core/resources/touch_screen/touch_screen_resource.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/hid_core/resources/touch_screen/touch_screen_resource.cpp b/src/hid_core/resources/touch_screen/touch_screen_resource.cpp
index 56e8e8e51..c39321915 100644
--- a/src/hid_core/resources/touch_screen/touch_screen_resource.cpp
+++ b/src/hid_core/resources/touch_screen/touch_screen_resource.cpp
@@ -63,7 +63,7 @@ Result TouchResource::ActivateTouch(u64 aruid) {
auto* applet_data = applet_resource->GetAruidDataByIndex(aruid_index);
TouchAruidData& touch_data = aruid_data[aruid_index];
- if (!applet_data->flag.is_assigned) {
+ if (applet_data == nullptr || !applet_data->flag.is_assigned) {
touch_data = {};
continue;
}
@@ -124,7 +124,7 @@ Result TouchResource::ActivateGesture(u64 aruid, u32 basic_gesture_id) {
auto* applet_data = applet_resource->GetAruidDataByIndex(aruid_index);
TouchAruidData& touch_data = aruid_data[aruid_index];
- if (!applet_data->flag.is_assigned) {
+ if (applet_data == nullptr || !applet_data->flag.is_assigned) {
touch_data = {};
continue;
}
@@ -324,7 +324,7 @@ Result TouchResource::SetTouchScreenConfiguration(
const auto* applet_data = applet_resource->GetAruidDataByIndex(aruid_index);
TouchAruidData& data = aruid_data[aruid_index];
- if (!applet_data->flag.is_assigned) {
+ if (applet_data == nullptr || !applet_data->flag.is_assigned) {
continue;
}
if (aruid != data.aruid) {
@@ -344,7 +344,7 @@ Result TouchResource::GetTouchScreenConfiguration(
const auto* applet_data = applet_resource->GetAruidDataByIndex(aruid_index);
const TouchAruidData& data = aruid_data[aruid_index];
- if (!applet_data->flag.is_assigned) {
+ if (applet_data == nullptr || !applet_data->flag.is_assigned) {
continue;
}
if (aruid != data.aruid) {