mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-02 21:11:25 +12:00
Revert "Fix invalid comparator in savedata_op sorting"
This reverts commit 22d9343f2c
.
This commit is contained in:
parent
aa50b0fbb9
commit
4a60533a3f
1 changed files with 2 additions and 2 deletions
|
@ -862,11 +862,11 @@ static NEVER_INLINE error_code savedata_op(ppu_thread& ppu, u32 operation, u32 v
|
|||
{
|
||||
if (order == CELL_SAVEDATA_SORTORDER_DESCENT && type == CELL_SAVEDATA_SORTTYPE_MODIFIEDTIME)
|
||||
{
|
||||
return entry1.mtime > entry2.mtime;
|
||||
return entry1.mtime >= entry2.mtime;
|
||||
}
|
||||
if (order == CELL_SAVEDATA_SORTORDER_DESCENT && type == CELL_SAVEDATA_SORTTYPE_SUBTITLE)
|
||||
{
|
||||
return entry1.subtitle > entry2.subtitle;
|
||||
return entry1.subtitle >= entry2.subtitle;
|
||||
}
|
||||
if (order == CELL_SAVEDATA_SORTORDER_ASCENT && type == CELL_SAVEDATA_SORTTYPE_MODIFIEDTIME)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue