Change the quit key in Temple from Q to escape.

This commit is contained in:
CrazyEttin 2021-07-10 12:13:04 +03:00
parent db4ce66684
commit 107c10ef83
1 changed files with 4 additions and 6 deletions

View File

@ -249,9 +249,9 @@ introtxt db "In the Temple", 0xd, 0xa,\
"Arattavesh.",\ "Arattavesh.",\
0xd, 0xa,\ 0xd, 0xa,\
0xd, 0xa,\ 0xd, 0xa,\
"To choose an option press the corresponding number. ",\ "Press the corresponding number to choose an option or ",\
"To quit the game", 0xd, 0xa,\ "escape to quit the", 0xd, 0xa,\
"press Q.", 0xd, 0xa,\ "game.", 0xd, 0xa,\
0xd, 0xa,\ 0xd, 0xa,\
"Press any key to start.", 0x0 "Press any key to start.", 0x0
startxt db 0xd, 0xa,\ startxt db 0xd, 0xa,\
@ -523,9 +523,7 @@ crlf db 0xd, 0xa, 0x0
readquit: readquit:
;Check for keypress Q ;Check for keypress Q
cmp al, "Q" cmp al, 0x1b
je done
cmp al, "q"
je done je done
;Return ;Return