You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if (is_scrolling_down() orkeyboard_check_pressed(vk_down) or is_scrolling_up() or keyboard_check_pressed(vk_up) or (keyboard_check_pressed(ord("A")) or keyboard_check_pressed(ord("D")) and not livemode) ) and not ((mx > 5and mx < 320+5) and (mouse_y > 675and mouse_y < 715))
66
+
if (is_scrolling_down() orkeyboard_check_pressed(vk_down) or is_scrolling_up() or keyboard_check_pressed(vk_up) or (keyboard_check_pressed(ord("A")) or keyboard_check_pressed(ord("D")) and not livemode) ) and not ((mx > 5and mx < 320+5) and (mouse_y > 675and mouse_y < 715)) and not instance_exists(obj_input)
67
67
{
68
68
audio_pause_sound(songplaying);
69
69
paused = true;
@@ -184,7 +184,7 @@ else {
184
184
var num
185
185
for (num = 0; num <= 9; num++)
186
186
{
187
-
if (keyboard_check_pressed(ord(num))) {
187
+
if (keyboard_check_pressed(ord(num))) andnotinstance_exists(obj_input) {
188
188
audio_sound_set_track_position(songplaying, num * 0.1 * audio_sound_length(songplaying))
0 commit comments