mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-13 09:51:31 +02:00
Seems I screwed up the JIT cache clearing a while ago. This should fix it.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@1936 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
c2c6e2bd47
commit
80116f4966
@ -200,6 +200,14 @@ namespace CPUCompare
|
||||
asm_routines.Init();
|
||||
}
|
||||
|
||||
void Jit64::ClearCache()
|
||||
{
|
||||
blocks.Clear();
|
||||
trampolines.ClearCodeSpace();
|
||||
ClearCodeSpace();
|
||||
}
|
||||
|
||||
|
||||
void Jit64::Shutdown()
|
||||
{
|
||||
FreeCodeSpace();
|
||||
|
@ -168,11 +168,7 @@ public:
|
||||
|
||||
void NotifyBreakpoint(u32 em_address, bool set);
|
||||
|
||||
void ClearCache()
|
||||
{
|
||||
blocks.Clear();
|
||||
trampolines.ClearCodeSpace();
|
||||
}
|
||||
void ClearCache();
|
||||
|
||||
// Run!
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user