mirror of
https://github.com/Ed94/raddebugger.git
synced 2026-08-05 05:18:40 +00:00
more determinism fixes
This commit is contained in:
@@ -1740,7 +1740,12 @@ rdim_bake_idx_run_is_before(void *l, void *r)
|
||||
is_less_than = 1;
|
||||
break;
|
||||
}
|
||||
if(off+1 == common_count)
|
||||
else if(lir->idxes[off] > rir->idxes[off])
|
||||
{
|
||||
is_less_than = 0;
|
||||
break;
|
||||
}
|
||||
else if(off+1 == common_count)
|
||||
{
|
||||
is_less_than = (lir->count < rir->count);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user