diff --git a/Core/MIPS/IR/IRInterpreter.cpp b/Core/MIPS/IR/IRInterpreter.cpp index 55a613b25771..c9540c69f627 100644 --- a/Core/MIPS/IR/IRInterpreter.cpp +++ b/Core/MIPS/IR/IRInterpreter.cpp @@ -1,24 +1,23 @@ -#ifdef _M_SSE -#include -#endif - #include #include +#include "math/math_util.h" +#include "Common/Common.h" + +#ifdef _M_SSE +#include +#endif + #include "Core/MemMap.h" #include "Core/HLE/HLE.h" #include "Core/HLE/ReplaceTables.h" +#include "Core/MIPS/MIPS.h" #include "Core/MIPS/MIPSTables.h" #include "Core/MIPS/MIPSVFPUUtils.h" -#include "Core/System.h" -#include "Core/CoreTiming.h" - -#include "math/math_util.h" -#include "Common/CommonTypes.h" -#include "Core/MemMap.h" -#include "Core/MIPS/MIPS.h" #include "Core/MIPS/IR/IRInst.h" #include "Core/MIPS/IR/IRInterpreter.h" +#include "Core/System.h" +#include "Core/CoreTiming.h" alignas(16) float vec4InitValues[8][4] = { { 0.0f, 0.0f, 0.0f, 0.0f },