From e0c4c235dfc23b6f43635a659281f4281b938a65 Mon Sep 17 00:00:00 2001 From: toaster Date: Sat, 31 Dec 2022 20:34:11 +0000 Subject: [PATCH] Move "return" in "Are you sure you want to return to the menu?" to the next line, to balance the lines out a little better --- src/k_menufunc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/k_menufunc.c b/src/k_menufunc.c index 29efb0b49..03bcfc9d0 100644 --- a/src/k_menufunc.c +++ b/src/k_menufunc.c @@ -6457,7 +6457,7 @@ void M_EndGame(INT32 choice) if (!Playing()) return; - M_StartMessage(M_GetText("Are you sure you want to return\nto the menu?\nPress (A) to confirm or (B) to cancel\n"), FUNCPTRCAST(M_ExitGameResponse), MM_YESNO); + M_StartMessage(M_GetText("Are you sure you want to\nreturn to the menu?\nPress (A) to confirm or (B) to cancel\n"), FUNCPTRCAST(M_ExitGameResponse), MM_YESNO); }