From 601c94f49de958fba8e8ab9562305f6b872bec19 Mon Sep 17 00:00:00 2001 From: zilmar Date: Mon, 19 Nov 2012 22:07:07 +1100 Subject: [PATCH] Code Refactoring: interface change in Memory Class.h --- Source/Project64/N64 System/Mips/Memory Class.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Source/Project64/N64 System/Mips/Memory Class.h b/Source/Project64/N64 System/Mips/Memory Class.h index ff4a7f5d9..f4d374063 100644 --- a/Source/Project64/N64 System/Mips/Memory Class.h +++ b/Source/Project64/N64 System/Mips/Memory Class.h @@ -1,6 +1,5 @@ -class CMipsMemory_CallBack { -public: - +interface CMipsMemory_CallBack +{ //Protected memory has been written to, returns true if that memory has been unprotected virtual bool WriteToProtectedMemory (DWORD Address, int length) = 0; };