From fe7dd71d53a41579bb2dd7374d67502d1de656b6 Mon Sep 17 00:00:00 2001 From: Frank-74 Date: Tue, 15 Jan 2019 19:45:54 +0000 Subject: [PATCH] Fix x64 compile error I don't know why this is needed, as x86 build works fine without it. x64 build fails with Project64-core/N64System/Recompiler/CodeSection.h(19): error C2504: 'CDebugSettings': base class undefined --- Source/Project64-core/N64System/Recompiler/CodeSection.h | 1 + 1 file changed, 1 insertion(+) diff --git a/Source/Project64-core/N64System/Recompiler/CodeSection.h b/Source/Project64-core/N64System/Recompiler/CodeSection.h index b6c306454..38015ccbf 100644 --- a/Source/Project64-core/N64System/Recompiler/CodeSection.h +++ b/Source/Project64-core/N64System/Recompiler/CodeSection.h @@ -11,6 +11,7 @@ #pragma once #include "JumpInfo.h" #include +#include class CCodeBlock;