mirror of
https://github.com/Ed94/raddebugger.git
synced 2026-07-25 17:03:44 +00:00
more determinism fixes
This commit is contained in:
@@ -378,8 +378,13 @@ str8_is_before(String8 a, String8 b)
|
||||
{
|
||||
result = 1;
|
||||
break;
|
||||
}
|
||||
if(off+1 == common_size)
|
||||
}
|
||||
else if(a.str[off] > b.str[off])
|
||||
{
|
||||
result = 0;
|
||||
break;
|
||||
}
|
||||
else if(off+1 == common_size)
|
||||
{
|
||||
result = (a.size < b.size);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user