From 4cb404d19273479571e1977f3662f766bcac9f8c Mon Sep 17 00:00:00 2001 From: gered Date: Tue, 16 Feb 2021 17:38:07 -0500 Subject: [PATCH] fix note about the value reported when too many keys are pressed --- src/gckeybrd.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gckeybrd.h b/src/gckeybrd.h index 7b29916..1cb7a78 100644 --- a/src/gckeybrd.h +++ b/src/gckeybrd.h @@ -23,8 +23,8 @@ int GCKB_Init(int chan); * * The pressedKeys buffer passed in should be large enough to hold 3 bytes. Each byte will correspond to one key * pressed. The keyboard controller can only recognize 3 simultaneous key presses at a time (and, depending on the - * specific keys, probably only 2 at a time). If too many keys are held down, all of the values returned will be 0x02. - * A value of 0x00 indicates no key press. + * specific keys, probably only 2 at a time). If too many keys are held down, all of the values returned will be 0x01 + * or 0x02. A value of 0x00 indicates no key press. */ int GCKB_ReadKeys(int chan, u8 *pressedKeys);