mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2024-11-06 04:01:44 +00:00
fs.mitm: fix inverted ifile condition
This commit is contained in:
parent
634ce933be
commit
c8a4a6dc58
1 changed files with 1 additions and 1 deletions
|
@ -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 a new issue