Skip to content

Commit

Permalink
Made Restart more descriptive
Browse files Browse the repository at this point in the history
  • Loading branch information
krazynez committed Jul 21, 2023
1 parent 689fd82 commit 121c547
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions extras/menus/xMenu/src/submenu.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ void SubMenu::getItems() {
memoryStickSpeedup << "Memory Stick Speedup: " << ((se_config->msspeed)? "Enabled" : "Disabled");

options[0] = memoryStickSpeedup.str();
options[1] = "Restart";
options[1] = "Restart xMenu";
options[2] = "Exit";
}

Expand Down Expand Up @@ -114,7 +114,7 @@ void SubMenu::updateScreen(){
if(i==0)
fillScreenRect(color, (options[i].size()*12)+8, cur_y+1, 2, 14); // right side
else if (i==1)
fillScreenRect(color, w+8, cur_y+1, 2, 14); // right side
fillScreenRect(color, w+32, cur_y+1, 2, 14); // right side
else
fillScreenRect(color, w-4, cur_y+1, 2, 14); // right side
//fillScreenRect(color, min((int)(options[i].size()*8)+2, w), cur_y+3, 2, 10); // right side
Expand Down

0 comments on commit 121c547

Please sign in to comment.