diff --git a/Source/Project64-core/N64System/Recompiler/x86/x86ops.cpp b/Source/Project64-core/N64System/Recompiler/x86/x86ops.cpp index a518a4cb4..624fb3756 100644 --- a/Source/Project64-core/N64System/Recompiler/x86/x86ops.cpp +++ b/Source/Project64-core/N64System/Recompiler/x86/x86ops.cpp @@ -901,7 +901,14 @@ void CX86Ops::AddLabelSymbol(const asmjit::Label & Label, const char * Symbol) NumberSymbolMap::iterator itr = m_LabelSymbols.find(Label.id()); if (itr != m_LabelSymbols.end()) { - __debugbreak(); + if (strcmp(itr->second.Symbol.c_str(), Symbol) == 0) + { + itr->second.Count += 2; + } + else + { + __debugbreak(); + } } else {