From 2b7d95be1d61c492bf5b84b5fd8e14661e1c0e19 Mon Sep 17 00:00:00 2001 From: Henrik Rydgard Date: Tue, 3 Feb 2015 00:21:21 +0100 Subject: [PATCH] Typo fix --- Core/CwCheat.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Core/CwCheat.cpp b/Core/CwCheat.cpp index fd4649117b..b7eef9c517 100644 --- a/Core/CwCheat.cpp +++ b/Core/CwCheat.cpp @@ -284,7 +284,7 @@ std::vector CWCheatEngine::GetCodesList() { //Reads the entire chea void CWCheatEngine::InvalidateICache(u32 addr, int size) { if (MIPSComp::jit) { - MIPSComp::jit->GetBlockCache()->InvalidateICache(addr & ~3, 4); + MIPSComp::jit->GetBlockCache()->InvalidateICache(addr & ~3, size); } }