From 35167da6dd56eaa27165a122a928514438691501 Mon Sep 17 00:00:00 2001 From: Michael Scire Date: Fri, 15 Mar 2019 19:51:00 -0700 Subject: [PATCH] loader: Actually use hidKeysHeld --- stratosphere/loader/source/ldr_hid.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stratosphere/loader/source/ldr_hid.cpp b/stratosphere/loader/source/ldr_hid.cpp index 091491b31..9c580161e 100644 --- a/stratosphere/loader/source/ldr_hid.cpp +++ b/stratosphere/loader/source/ldr_hid.cpp @@ -30,7 +30,7 @@ Result HidManagement::GetKeysDown(u64 *keys) { } hidScanInput(); - *keys = hidKeysDown(CONTROLLER_P1_AUTO); + *keys = hidKeysHeld(CONTROLLER_P1_AUTO); return 0x0; -} \ No newline at end of file +}