mirror of
https://github.com/cemu-project/Cemu.git
synced 2025-07-05 14:31:17 +12:00
Add support for games in NUS format (.app)
Requires title.tmd and title.tik in same directory
This commit is contained in:
parent
f9f6206929
commit
5ad57bb0c9
8 changed files with 54 additions and 24 deletions
|
@ -941,6 +941,8 @@ wxString wxTitleManagerList::GetTitleEntryText(const TitleEntry& entry, ItemColu
|
|||
return _("Folder");
|
||||
case wxTitleManagerList::EntryFormat::WUD:
|
||||
return _("WUD");
|
||||
case wxTitleManagerList::EntryFormat::NUS:
|
||||
return _("NUS");
|
||||
case wxTitleManagerList::EntryFormat::WUA:
|
||||
return _("WUA");
|
||||
}
|
||||
|
@ -1010,16 +1012,19 @@ void wxTitleManagerList::HandleTitleListCallback(CafeTitleListCallbackEvent* evt
|
|||
wxTitleManagerList::EntryFormat entryFormat;
|
||||
switch (titleInfo.GetFormat())
|
||||
{
|
||||
case TitleInfo::TitleDataFormat::HOST_FS:
|
||||
default:
|
||||
entryFormat = EntryFormat::Folder;
|
||||
break;
|
||||
case TitleInfo::TitleDataFormat::WUD:
|
||||
entryFormat = EntryFormat::WUD;
|
||||
break;
|
||||
case TitleInfo::TitleDataFormat::NUS:
|
||||
entryFormat = EntryFormat::NUS;
|
||||
break;
|
||||
case TitleInfo::TitleDataFormat::WIIU_ARCHIVE:
|
||||
entryFormat = EntryFormat::WUA;
|
||||
break;
|
||||
case TitleInfo::TitleDataFormat::HOST_FS:
|
||||
default:
|
||||
entryFormat = EntryFormat::Folder;
|
||||
break;
|
||||
}
|
||||
|
||||
if (evt->eventType == CafeTitleListCallbackEvent::TYPE::TITLE_DISCOVERED)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue