Fix key release masks for A, Y1 (Sys1) and Y253 (Sys2)

These commands should wait for release of all direction keys + RETURN,
instead of only RIGHT and RETURN.
This commit is contained in:
kichikuou
2026-08-21 07:42:37 +09:00
parent 167bc54dc0
commit 0d4884f6ba
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -424,7 +424,7 @@ void NACT::cmd_a()
}
sys_sleep(30);
if (!msgskip->skipping()) {
wait_key_release(0x18);
wait_key_release(0x1f);
}
// ウィンドウ更新
+1 -1
View File
@@ -744,7 +744,7 @@ public:
sys_sleep(16);
}
sys_sleep(100);
wait_key_release(0x18);
wait_key_release(0x1f);
ags->clear_text_window(text_window, true);
break;
case 2:
+1 -1
View File
@@ -805,7 +805,7 @@ void NACT_Sys2::cmd_y()
sys_sleep(16);
}
sys_sleep(100);
wait_key_release(0x18);
wait_key_release(0x1f);
break;
case 254:
RND = 0;