diff options
author | henriquelalves <henriquelalves@gmail.com> | 2024-05-15 11:29:28 +0300 |
---|---|---|
committer | henriquelalves <henriquelalves@gmail.com> | 2024-05-15 11:29:28 +0300 |
commit | 0a89a84956311f17648bb443e429dab25d35f0cc (patch) | |
tree | 00640cdc6f0cf717d7cf5ef7a659d91887a708f1 /scripts/prompt.scm | |
parent | 9859882f9f37f3eee6f9b90348c7e3c2ed229c49 (diff) | |
download | gamejam-slgj-2024-0a89a84956311f17648bb443e429dab25d35f0cc.tar.gz gamejam-slgj-2024-0a89a84956311f17648bb443e429dab25d35f0cc.tar.bz2 gamejam-slgj-2024-0a89a84956311f17648bb443e429dab25d35f0cc.zip |
removed skeleton repl
Diffstat (limited to 'scripts/prompt.scm')
-rw-r--r-- | scripts/prompt.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/prompt.scm b/scripts/prompt.scm index f3fe6c9..3440b28 100644 --- a/scripts/prompt.scm +++ b/scripts/prompt.scm @@ -6,7 +6,7 @@ (let ((key-pressed (rl-get-key-pressed))) - (if (or (eq? key-pressed 161) (eq? key-pressed 96)) + (if (eq? key-pressed KEY_F1) (set! prompt-active (not prompt-active)) ) |