From 8dccb0c743af0d872d3293b04f0944857afdd182 Mon Sep 17 00:00:00 2001 From: comex Date: Thu, 25 Sep 2014 01:15:58 -0400 Subject: [PATCH] Fix fastmem in JitIL after 755bd2c4. That commit reorganized fastmem a bit; I wrote it before the patch to support fastmem in JitIL landed, and forgot to edit it to account for the fact. Since JitILBase now derives from Jitx86Base, the HandleFault override can just be removed. --- Source/Core/Core/PowerPC/Jit64IL/JitIL.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/Source/Core/Core/PowerPC/Jit64IL/JitIL.h b/Source/Core/Core/PowerPC/Jit64IL/JitIL.h index 5592500c2a..8209cfc5a7 100644 --- a/Source/Core/Core/PowerPC/Jit64IL/JitIL.h +++ b/Source/Core/Core/PowerPC/Jit64IL/JitIL.h @@ -58,8 +58,6 @@ public: JitBlockCache *GetBlockCache() override { return &blocks; } - bool HandleFault(uintptr_t access_address, SContext* ctx) override { return false; } - void ClearCache() override; const u8 *GetDispatcher() {