mirror of
https://github.com/cemu-project/Cemu.git
synced 2025-07-05 06:21:19 +12:00
Fix "Favorite" checkbox state in Game list menu
This commit is contained in:
parent
4a3b2e0381
commit
0ddeba61ce
1 changed files with 1 additions and 1 deletions
|
@ -476,7 +476,7 @@ void wxGameList::OnContextMenu(wxContextMenuEvent& event)
|
|||
|
||||
menu.Append(kContextMenuStart, _("&Start"));
|
||||
|
||||
bool isFavorite = false;
|
||||
bool isFavorite = GetConfig().IsGameListFavorite(title_id);
|
||||
|
||||
menu.AppendSeparator();
|
||||
menu.AppendCheckItem(kContextMenuFavorite, _("&Favorite"))->Check(isFavorite);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue