From b9aad3310eea3458e8ebd5f9ccd63b2133637231 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Thu, 17 May 2018 17:09:55 -0400 Subject: PowerPC: Move MMU-specifics from PowerPC.h to MMU.h PowerPC.h at this point is pretty much a general glob of stuff, and it's unfortunate, since it means pulling in a lot of unrelated header dependencies and a bunch of other things that don't need to be seen by things that just want to read memory. Breaking this out into its own header keeps all the MMU-related stuff together and also limits the amount of header dependencies being included (the primary motivation for this being the former reason). --- Source/Core/DolphinWX/Debugger/MemoryView.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Source/Core/DolphinWX/Debugger/MemoryView.cpp') diff --git a/Source/Core/DolphinWX/Debugger/MemoryView.cpp b/Source/Core/DolphinWX/Debugger/MemoryView.cpp index 0e21c14473..b05e001a6c 100644 --- a/Source/Core/DolphinWX/Debugger/MemoryView.cpp +++ b/Source/Core/DolphinWX/Debugger/MemoryView.cpp @@ -24,8 +24,8 @@ #include "Common/StringUtil.h" #include "Core/Core.h" #include "Core/HW/Memmap.h" +#include "Core/PowerPC/MMU.h" #include "Core/PowerPC/PPCSymbolDB.h" -#include "Core/PowerPC/PowerPC.h" #include "DolphinWX/Debugger/CodeWindow.h" #include "DolphinWX/Debugger/DebuggerUIUtil.h" #include "DolphinWX/Debugger/WatchWindow.h" -- cgit v1.2.3