From 75ef4cd3d137cf0c323590722aa7f57caa35f5af Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juhani=20Krekel=C3=A4?= Date: Fri, 25 Feb 2022 15:53:55 +0200 Subject: [PATCH] Align lists in help text --- dosdl.asm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/dosdl.asm b/dosdl.asm index 993c7aa..6bf62fa 100644 --- a/dosdl.asm +++ b/dosdl.asm @@ -1097,10 +1097,10 @@ guess_str db ' guess.$' help_str: db 'Usage: dosdl [/h | /u | /l | /?] [seed]', 13, 10 - db '/h Enable hard mode.', 13, 10 - db '/u Enable ultra hard mode.', 13, 10 - db '/l Display license info.', 13, 10 - db '/? Display this help.', 13, 10 + db '/h Enable hard mode.', 13, 10 + db '/u Enable ultra hard mode.', 13, 10 + db '/l Display license info.', 13, 10 + db '/? Display this help.', 13, 10 db 13, 10 db 'Hello DOSdl is a word guessing game. You have six tries to guess the correct', 13, 10 db 'English word. After a guess the game displays feedback under each letter:', 13, 10