]> granicus.if.org Git - nethack/commitdiff
Differentiate the symset and roguesymset menu prompts
authorPasi Kallinen <paxed@alt.org>
Fri, 16 Sep 2016 12:50:42 +0000 (15:50 +0300)
committerPasi Kallinen <paxed@alt.org>
Fri, 16 Sep 2016 12:50:42 +0000 (15:50 +0300)
src/options.c

index 4edc94fe0b5a8baa895da194db8526c7c4039dd4..225c4aa85803f508b7151a62d25b9b8811537d7a 100644 (file)
@@ -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);