mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2025-06-29 06:12:39 +02:00
fs.mitm: fix inverted ifile condition
This commit is contained in:
parent
634ce933be
commit
c8a4a6dc58
@ -79,7 +79,7 @@ class IFile {
|
|||||||
}
|
}
|
||||||
|
|
||||||
Result OperateRange(u32 operation_type, u64 offset, u64 size, FsRangeInfo *out_range_info) {
|
Result OperateRange(u32 operation_type, u64 offset, u64 size, FsRangeInfo *out_range_info) {
|
||||||
if (operation_type != 3) {
|
if (operation_type == 3) {
|
||||||
return OperateRangeImpl(operation_type, offset, size, out_range_info);
|
return OperateRangeImpl(operation_type, offset, size, out_range_info);
|
||||||
}
|
}
|
||||||
return ResultFsUnsupportedOperation;
|
return ResultFsUnsupportedOperation;
|
||||||
|
Loading…
Reference in New Issue
Block a user