mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2025-01-22 11:33:55 +01:00
fs: fix inverted alignment determination in compressed storage
This commit is contained in:
parent
f58eca5f7b
commit
46f2d34f25
@ -996,7 +996,7 @@ namespace ams::fssystem {
|
||||
} else if (!head_unaligned) {
|
||||
return true;
|
||||
} else {
|
||||
return static_cast<s64>(cur_size + cur_offset) < head_range.GetEndVirtualOffset();
|
||||
return head_range.GetEndVirtualOffset() < static_cast<s64>(cur_size + cur_offset);
|
||||
}
|
||||
} else {
|
||||
return false;
|
||||
|
Loading…
x
Reference in New Issue
Block a user