Replace indirect guest function calls with direct ones. (#141)

This commit is contained in:
Skyth (Asilkan)
2025-01-20 18:18:20 +03:00
committed by GitHub
parent e8d36998a5
commit fefd177b3a
7 changed files with 23 additions and 23 deletions
@@ -3,7 +3,7 @@ namespace SWA
inline boost::shared_ptr<CCsdProject> CCsdDatabaseWrapper::GetCsdProject(const Hedgehog::Base::CSharedString& in_rName)
{
boost::shared_ptr<CCsdProject> spCsdProject;
GuestToHostFunction<void>(0x825E2B40, &in_rName, this, &spCsdProject, 0);
GuestToHostFunction<void>(sub_825E2B40, &in_rName, this, &spCsdProject, 0);
return spCsdProject;
}
}