From 107c10ef83ae01fcc84c727711411e8c05e3b865 Mon Sep 17 00:00:00 2001 From: CrazyEttin <> Date: Sat, 10 Jul 2021 12:13:04 +0300 Subject: [PATCH] Change the quit key in Temple from Q to escape. --- TEMPLE/TEMPLE.ASM | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/TEMPLE/TEMPLE.ASM b/TEMPLE/TEMPLE.ASM index de65798..840296e 100644 --- a/TEMPLE/TEMPLE.ASM +++ b/TEMPLE/TEMPLE.ASM @@ -249,9 +249,9 @@ introtxt db "In the Temple", 0xd, 0xa,\ "Arattavesh.",\ 0xd, 0xa,\ 0xd, 0xa,\ - "To choose an option press the corresponding number. ",\ - "To quit the game", 0xd, 0xa,\ - "press Q.", 0xd, 0xa,\ + "Press the corresponding number to choose an option or ",\ + "escape to quit the", 0xd, 0xa,\ + "game.", 0xd, 0xa,\ 0xd, 0xa,\ "Press any key to start.", 0x0 startxt db 0xd, 0xa,\ @@ -523,9 +523,7 @@ crlf db 0xd, 0xa, 0x0 readquit: ;Check for keypress Q -cmp al, "Q" -je done -cmp al, "q" +cmp al, 0x1b je done ;Return