From c99b34e60c3b7f4464f9a3d9fd53e018b39804a0 Mon Sep 17 00:00:00 2001 From: Flyinghead Date: Tue, 2 Mar 2021 20:10:25 +0100 Subject: [PATCH] msvc build fix --- core/hw/arm7/arm7.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/core/hw/arm7/arm7.cpp b/core/hw/arm7/arm7.cpp index 84f80e421..ac1289bc2 100644 --- a/core/hw/arm7/arm7.cpp +++ b/core/hw/arm7/arm7.cpp @@ -345,7 +345,9 @@ void update_armintc() // // Used by ARM7 Recompiler // -namespace aicaarm::recompiler { +namespace aicaarm { + +namespace recompiler { //Emulate a single arm op, passed in opcode @@ -393,6 +395,7 @@ void DYNACALL MSR_do(u32 v) template void DYNACALL MSR_do<0>(u32 v); template void DYNACALL MSR_do<1>(u32 v); +} } #endif // FEAT_AREC != DYNAREC_NONE