Loosen condition for recognising existing label

This commit is contained in:
Stefan Rueger
2024-07-18 19:03:57 +01:00
parent 3784b333cd
commit e73e5de097

View File

@@ -49,7 +49,7 @@ void Register_JumpCall(int From, int To, int Type, unsigned char FunctionCall) {
// Already entered this JC?
for(int i = 0; i < N; i++)
if(jc[i].From == From && jc[N].To == To && jc[N].Type == Type && jc[N].FunctionCall == FunctionCall)
if(jc[i].From == From && jc[N].To == To && jc[N].Type == Type)
return;
jc = mmt_realloc(jc, sizeof(Disasm_JumpCall) * (N+1));