mirror of
https://github.com/hedge-dev/UnleashedRecomp
synced 2026-06-20 16:21:41 -04:00
Stub audio functions
This commit is contained in:
@@ -35,3 +35,8 @@ void* CodeCache::Find(uint32_t guest) const
|
||||
{
|
||||
return *reinterpret_cast<void**>(bucket + static_cast<uint64_t>(guest) * 2);
|
||||
}
|
||||
|
||||
PPCFunc* KeFindHostFunction(uint32_t guest)
|
||||
{
|
||||
return static_cast<PPCFunc*>(gCodeCache.Find(guest));
|
||||
}
|
||||
|
||||
@@ -13,4 +13,6 @@ struct CodeCache
|
||||
void* Find(uint32_t guest) const;
|
||||
};
|
||||
|
||||
extern CodeCache gCodeCache;
|
||||
PPCFunc* KeFindHostFunction(uint32_t guest);
|
||||
|
||||
extern CodeCache gCodeCache;
|
||||
|
||||
Reference in New Issue
Block a user