mirror of
https://github.com/Xpl0itU/WiiUDownloader.git
synced 2025-05-27 21:44:26 -04:00
Fix GetTitleEntries
This commit is contained in:
parent
38250c8991
commit
f4df0825c1
2 changed files with 4 additions and 4 deletions
|
@ -51,7 +51,7 @@ const (
|
|||
func GetTitleEntries(category uint8) []TitleEntry {
|
||||
titleEntries := make([]TitleEntry, 0)
|
||||
for _, entry := range titleEntry {
|
||||
if entry.Category == category {
|
||||
if category == TITLE_CATEGORY_ALL || category == entry.Category {
|
||||
titleEntries = append(titleEntries, entry)
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue