From cd2703dc358f056c9ac4c73444afba4753977428 Mon Sep 17 00:00:00 2001 From: Pasi Kallinen Date: Fri, 16 Sep 2016 15:50:42 +0300 Subject: [PATCH] Differentiate the symset and roguesymset menu prompts --- src/options.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/options.c b/src/options.c index 4edc94fe0..225c4aa85 100644 --- a/src/options.c +++ b/src/options.c @@ -4561,7 +4561,8 @@ boolean setinitial, setfromfile; } sl = sl->next; } - end_menu(tmpwin, "Select symbol set:"); + Sprintf(buf, "Select %ssymbol set:", rogueflag ? "rogue level " : ""); + end_menu(tmpwin, buf); if (select_menu(tmpwin, PICK_ONE, &symset_pick) > 0) { chosen = symset_pick->item.a_int - 2; free((genericptr_t) symset_pick);