feat: more profile stuff

This commit is contained in:
2026-09-07 14:10:31 -04:00
parent 0a87b227d3
commit bd2bafe8ae
6 changed files with 68 additions and 92 deletions
+7 -2
View File
@@ -3,12 +3,12 @@
void C_4JProfile::LoadSettings(void* gs, size_t gsSize)
{
InternalProfileManager.LoadSettings(gs, gsSize);
InternalProfileManager.m_ProfileData.LoadSettings(gs, gsSize);
}
void C_4JProfile::SaveSettings(void* gs, size_t gsSize)
{
InternalProfileManager.SaveSettings(gs, gsSize);
InternalProfileManager.m_ProfileData.SaveSettings(gs, gsSize);
}
bool C_4JProfile::IsSignedIn(int iQuadrant)
@@ -70,3 +70,8 @@ bool C_4JProfile::IsSystemUIDisplayed()
{
return 0; //str1k3r - matches durango profile lib
}
void C_4JProfile::SetDebugFullOverride(bool bVal)
{
InternalProfileManager.m_Sys.SetDebugFullOverride(bVal);
}