Applet: Print unknown AppletId on ASSERT

master
B3n30 2017-12-06 12:41:46 +07:00
parent e784434a25
commit ddc59e3881
1 changed files with 1 additions and 1 deletions

@ -114,7 +114,7 @@ static u64 GetTitleIdForApplet(AppletId id) {
return data.applet_ids[0] == id || data.applet_ids[1] == id; return data.applet_ids[0] == id || data.applet_ids[1] == id;
}); });
ASSERT_MSG(itr != applet_titleids.end(), "Unknown applet id"); ASSERT_MSG(itr != applet_titleids.end(), "Unknown applet id %u", id);
return itr->title_ids[CFG::GetRegionValue()]; return itr->title_ids[CFG::GetRegionValue()];
} }