We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 03b2a78 commit cc1e544Copy full SHA for cc1e544
scripts/draw_piano/draw_piano.gml
@@ -171,7 +171,7 @@ if (d = 1 && !mouse_check_button(mb_left)) {
171
}
172
// Check key presses
173
if (window = 0 && text_focus = -1 && key_edit = -1 && !keyboard_check(vk_control)) {
174
-for (a = 0 ;a < 87; a += 1) {
+for (a = 0; a <= 87; a += 1) {
175
if (piano_key[a] > 0) {
176
if (key_press[a] = 0 && keyboard_check(piano_key[a])) {
177
if (select_lastpressed) selected_key = a
0 commit comments