From a5f53afed0eb712510332adbf51243d5c80bc528 Mon Sep 17 00:00:00 2001 From: yellows8 Date: Tue, 8 Dec 2020 15:39:02 -0500 Subject: [PATCH] hid/hdls: Use HiddbgNpadButton. --- hid/hdls/source/main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hid/hdls/source/main.c b/hid/hdls/source/main.c index fe98b31..37b3f7d 100644 --- a/hid/hdls/source/main.c +++ b/hid/hdls/source/main.c @@ -94,10 +94,10 @@ int main(int argc, char* argv[]) state.buttons = 0; if (padGetButtons(&pad) & HidNpadButton_R) - state.buttons |= KEY_HOME; + state.buttons |= HiddbgNpadButton_Home; if (padGetButtons(&pad) & HidNpadButton_L) - state.buttons |= KEY_CAPTURE; + state.buttons |= HiddbgNpadButton_Capture; if (padGetButtons(&pad) & HidNpadButton_Up) state.buttons |= HidNpadButton_ZR;