ncm: update to implement new ContentMetaDatabase function for 20.0.0

This commit is contained in:
Michael Scire
2025-04-30 23:27:36 -07:00
parent 13780c5c65
commit a8e955d3be
8 changed files with 70 additions and 1 deletions

View File

@@ -226,6 +226,11 @@ namespace ams::ncm {
AMS_ASSERT(m_interface != nullptr);
R_RETURN(m_interface->GetPlatform(out, key));
}
Result HasAttributes(u8 *out, u8 attr_mask) {
AMS_ASSERT(m_interface != nullptr);
R_RETURN(m_interface->HasAttributes(out, attr_mask));
}
};
}