Jit: Change argument order for InvalidateICacheLine(s)FromJIT

This commit is contained in:
JosJuice
2023-04-01 14:34:30 +02:00
parent 7e9a63b987
commit 1bf593f65a
4 changed files with 17 additions and 17 deletions

View File

@ -257,12 +257,12 @@ void JitInterface::InvalidateICacheLines(u32 address, u32 count)
InvalidateICache(address & ~0x1f, 32 * count, false);
}
void JitInterface::InvalidateICacheLineFromJIT(u32 address, u32 dummy, JitInterface& jit_interface)
void JitInterface::InvalidateICacheLineFromJIT(JitInterface& jit_interface, u32 address)
{
jit_interface.InvalidateICacheLine(address);
}
void JitInterface::InvalidateICacheLinesFromJIT(u32 address, u32 count, JitInterface& jit_interface)
void JitInterface::InvalidateICacheLinesFromJIT(JitInterface& jit_interface, u32 address, u32 count)
{
jit_interface.InvalidateICacheLines(address, count);
}