input, timing and other misc

This commit is contained in:
Sajid
2024-10-01 15:12:12 +06:00
parent 6fe61971a3
commit 040e3228e1
16 changed files with 650 additions and 76 deletions

View File

@@ -38,10 +38,10 @@ void* CodeCache::Find(uint32_t guest) const
SWA_API PPCFunc* KeFindHostFunction(uint32_t guest)
{
return static_cast<PPCFunc*>(gCodeCache.Find(guest));
return static_cast<PPCFunc*>(g_codeCache.Find(guest));
}
SWA_API void KeInsertHostFunction(uint32_t guest, PPCFunc* function)
{
gCodeCache.Insert(guest, function);
g_codeCache.Insert(guest, function);
}