got rid of the N. numeration in stageselect
This commit is contained in:
parent
a94479cecf
commit
610332bc2f
1 changed files with 1 additions and 1 deletions
|
@ -25,7 +25,7 @@ void create_stage_menu(MenuData *m) {
|
|||
m->title = "Stage Select";
|
||||
|
||||
for(i = 0; stages[i].loop; ++i) if(!stages[i].hidden) {
|
||||
snprintf(title, STGMENU_MAX_TITLE_LENGTH, "%d. %s", i + 1, stages[i].title);
|
||||
snprintf(title, STGMENU_MAX_TITLE_LENGTH, "%s", stages[i].title);
|
||||
add_menu_entry(m, title, start_story, &(stages[i]));
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue