mirror of
https://github.com/Oibaf66/frodo-wii.git
synced 2024-11-22 03:19:24 +01:00
Fix highlighting bug
This commit is contained in:
parent
3272171245
commit
e334caab9b
2
menu.cpp
2
menu.cpp
@ -93,7 +93,7 @@ void Menu::draw(SDL_Surface *where, int x, int y, int w, int h)
|
||||
entries_visible = this->n_entries - start_entry_visible;
|
||||
|
||||
for (int i = start_entry_visible;
|
||||
i < start_entry_visible + entries_visible; i++)
|
||||
i <= start_entry_visible + entries_visible; i++)
|
||||
{
|
||||
const char *msg = this->pp_msgs[i];
|
||||
int cur_y;
|
||||
|
Loading…
Reference in New Issue
Block a user