mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-11 09:18:40 +12:00
Qt: fix game grid regression
This commit is contained in:
parent
382bdcdcb7
commit
edcd2fc14a
3 changed files with 5 additions and 15 deletions
|
@ -5,6 +5,7 @@
|
|||
#include "table_item_delegate.h"
|
||||
#include "custom_table_widget_item.h"
|
||||
#include "input_dialog.h"
|
||||
#include "localized.h"
|
||||
|
||||
#include "Emu/Memory/vm.h"
|
||||
#include "Emu/System.h"
|
||||
|
@ -293,7 +294,9 @@ bool game_list_frame::IsEntryVisible(const game_info& game)
|
|||
{
|
||||
return m_categoryFilters.contains(qstr(game->info.category));
|
||||
}
|
||||
return category::CategoryInMap(game->info.category, Localized().category.cat_boot);
|
||||
|
||||
const auto cat_boot = Localized().category.cat_boot;
|
||||
return cat_boot.find(qstr(game->info.category)) != cat_boot.end();
|
||||
};
|
||||
|
||||
const QString serial = qstr(game->info.serial);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue