1
0
Fork 0
mirror of https://github.com/Atmosphere-NX/Atmosphere.git synced 2024-09-20 05:53:24 +01:00

fs: fix inverted alignment determination in compressed storage

This commit is contained in:
Michael Scire 2022-03-13 00:13:53 -08:00 committed by SciresM
parent da1b24b9b5
commit ba4e7c5866

View file

@ -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;