add kbm support

This commit is contained in:
2026-08-13 09:11:13 +03:00
parent fb2e8eefd9
commit 7c7386099a
62 changed files with 1036 additions and 134 deletions
@@ -53,16 +53,16 @@ HRESULT PS3LeaderboardManager::destroyTransactionContext(int transactionContext)
return sceNpScoreDestroyTransactionCtx(transactionContext);
}
HRESULT PS3LeaderboardManager::getFriendsList(const SceNpId &myNpId, SceNpId* &npIds, uint32_t &len)
{
EFilterMode filterMode = m_eFilterMode;
m_eFilterMode = eFM_Friends;
HRESULT ret = fillByIdsQuery(myNpId, npIds, len);
m_eFilterMode = filterMode;
return ret;
HRESULT PS3LeaderboardManager::getFriendsList(const SceNpId &myNpId, SceNpId* &npIds, uint32_t &len)
{
EFilterMode filterMode = m_eFilterMode;
m_eFilterMode = eFM_Friends;
HRESULT ret = fillByIdsQuery(myNpId, npIds, len);
m_eFilterMode = filterMode;
return ret;
}
char *PS3LeaderboardManager::getComment(SceNpScoreComment *comment)