feat: Durango Lib parity + remove stubs

This commit is contained in:
2026-09-12 17:31:48 -04:00
parent 0440f9974b
commit 0ef661392f
5 changed files with 59 additions and 6 deletions
+10 -2
View File
@@ -2,12 +2,20 @@
CProfile InternalProfileManager;
CProfile::CProfile()
{
m_LockedProfile = 0;
}
int CProfile::GetLockedProfile()
{
return 0;
return m_LockedProfile;
}
void CProfile::SetLockedProfile(int iProf)
{
;
if(m_LockedProfile != iProf)
{
m_LockedProfile = iProf;
}
}