mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-23 02:44:56 +00:00
SCI: Fix copy/paste error
This commit is contained in:
parent
c5fa1cabd8
commit
7e298f13a1
@ -409,7 +409,7 @@ int sort_temp_cmp(const void *p1, const void *p2) {
|
||||
const sort_temp_t *st1 = (const sort_temp_t *)p1;
|
||||
const sort_temp_t *st2 = (const sort_temp_t *)p2;
|
||||
|
||||
if (st1->order.segment < st1->order.segment || (st1->order.segment == st1->order.segment && st1->order.offset < st2->order.offset))
|
||||
if (st1->order.segment < st2->order.segment || (st1->order.segment == st2->order.segment && st1->order.offset < st2->order.offset))
|
||||
return -1;
|
||||
|
||||
if (st1->order.segment > st2->order.segment || (st1->order.segment == st2->order.segment && st1->order.offset > st2->order.offset))
|
||||
|
Loading…
x
Reference in New Issue
Block a user