From b2d424799cf017f4ae330efe7e2f681b9b04a3c8 Mon Sep 17 00:00:00 2001 From: Hyenadae Date: Sat, 9 May 2020 09:31:15 +0100 Subject: [PATCH] L (Trigger) is real. Keyboard only for now. --- src/pc/configfile.c | 2 +- src/pc/configfile.h | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/pc/configfile.c b/src/pc/configfile.c index 8bcc24db..a2de665e 100644 --- a/src/pc/configfile.c +++ b/src/pc/configfile.c @@ -34,7 +34,7 @@ bool configFullscreen = false; unsigned int configKeyA = 0x26; unsigned int configKeyB = 0x33; unsigned int configKeyStart = 0x39; -unsigned int configKeyL = 0x35; +unsigned int configKeyL = 0x34; unsigned int configKeyR = 0x36; unsigned int configKeyZ = 0x25; unsigned int configKeyCUp = 0x148; diff --git a/src/pc/configfile.h b/src/pc/configfile.h index ae9070b7..7128aaab 100644 --- a/src/pc/configfile.h +++ b/src/pc/configfile.h @@ -5,6 +5,7 @@ extern bool configFullscreen; extern unsigned int configKeyA; extern unsigned int configKeyB; extern unsigned int configKeyStart; +extern unsigned int configKeyL; extern unsigned int configKeyR; extern unsigned int configKeyZ; extern unsigned int configKeyCUp;