mirror of
https://github.com/Xpl0itU/WiiUDownloader.git
synced 2025-05-09 13:52:02 -04:00
Fix for disc only games being listed
This commit is contained in:
parent
83c8c36878
commit
6e997ad335
1 changed files with 3 additions and 0 deletions
|
@ -48,6 +48,9 @@ func GetTitleEntries(category uint8) []TitleEntry {
|
|||
titleEntries := make([]TitleEntry, 0)
|
||||
for _, entry := range titleEntry {
|
||||
if category == TITLE_CATEGORY_ALL || category == entry.Category {
|
||||
if entry.Category == TITLE_CATEGORY_DISC {
|
||||
continue
|
||||
}
|
||||
titleEntries = append(titleEntries, entry)
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue