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
committed by SciresM
parent b1ca5b4049
commit 791edf87a0
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));
}
};
}