Good idea from Frank M: can now use 'M' key to exit map as well as enter. Took that idea to the quest log as well, so that 'Q' exits quest log.

This commit is contained in:
Martin Haye 2021-03-02 18:33:36 -08:00
parent 44dc06287e
commit ecfe070bd2
2 changed files with 2 additions and 1 deletions

View File

@ -1147,7 +1147,7 @@ def _automap_show(targetX, targetY)#1
fin
break
wend
until key == 27 or key == 'Q' or key == '-' // esc or Q or - to exit
until key == 27 or key == 'Q' or key == 'M' // esc or Q or - to exit
// Free up stuff we allocated or loaded
auxMmgr(FREE_MEMORY, pAllMarks)

View File

@ -313,6 +313,7 @@ def _showQuests()#1
needRedisplay = TRUE
break
is $1B // Esc
is 'Q' // so that Q-Q opens and closes quest log
setWindow2; clearWindow
unloadExtraModules
return 0