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

This commit is contained in:
toaster 2022-12-31 20:34:11 +00:00
parent 76ea72ceac
commit e0c4c235df

View file

@ -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);
}