diff --git a/Project64.sln b/Project64.sln index 33089bed9..1511d8c89 100644 --- a/Project64.sln +++ b/Project64.sln @@ -75,6 +75,9 @@ EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Project64-rsp", "Source\Project64-rsp\Project64-rsp.vcxproj", "{A7ED562C-63F3-4B7E-B6B3-2CF7848752E1}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Project64-rsp-core", "Source\Project64-rsp-core\Project64-rsp-core.vcxproj", "{7598F6B8-9DA6-4897-B26F-F6865F824BF4}" + ProjectSection(ProjectDependencies) = postProject + {1968162C-0793-491D-91A1-81645A24D399} = {1968162C-0793-491D-91A1-81645A24D399} + EndProjectSection EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution diff --git a/Source/Project64-rsp-core/Recompiler/RspProfiling.cpp b/Source/Project64-rsp-core/Recompiler/RspProfiling.cpp index 35032e88b..c747eb569 100644 --- a/Source/Project64-rsp-core/Recompiler/RspProfiling.cpp +++ b/Source/Project64-rsp-core/Recompiler/RspProfiling.cpp @@ -47,7 +47,7 @@ public: m_StartTimeHi = HiValue; m_StartTimeLo = LoValue; #else - DebugBreak(); + __debugbreak(); #endif return OldTimerAddr; } @@ -82,7 +82,7 @@ public: m_Entries.insert(PROFILE_ENRTIES::value_type(m_CurrentTimerAddr, TimeTaken)); } #else - DebugBreak(); + __debugbreak(); #endif uint32_t OldTimerAddr = m_CurrentTimerAddr; diff --git a/Source/Project64-rsp-core/Recompiler/RspRecompilerCPU.cpp b/Source/Project64-rsp-core/Recompiler/RspRecompilerCPU.cpp index 056f33139..5361ac752 100644 --- a/Source/Project64-rsp-core/Recompiler/RspRecompilerCPU.cpp +++ b/Source/Project64-rsp-core/Recompiler/RspRecompilerCPU.cpp @@ -1002,7 +1002,7 @@ uint32_t RunRecompilerCPU(uint32_t Cycles) popad } #else - DebugBreak(); + __debugbreak(); #endif if (Profiling && IndvidualBlock) { @@ -1019,7 +1019,7 @@ uint32_t RunRecompilerCPU(uint32_t Cycles) #if defined(_M_IX86) && defined(_MSC_VER) _asm emms #else - DebugBreak(); + __debugbreak(); #endif } return Cycles;