summaryrefslogtreecommitdiffstats
path: root/src/core/file_sys/fssystem/fssystem_switch_storage.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/file_sys/fssystem/fssystem_switch_storage.h')
-rw-r--r--src/core/file_sys/fssystem/fssystem_switch_storage.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/core/file_sys/fssystem/fssystem_switch_storage.h b/src/core/file_sys/fssystem/fssystem_switch_storage.h
index 140f21ab7..2b43927cb 100644
--- a/src/core/file_sys/fssystem/fssystem_switch_storage.h
+++ b/src/core/file_sys/fssystem/fssystem_switch_storage.h
@@ -17,11 +17,6 @@ public:
s64 size;
};
-private:
- VirtualFile m_inside_region_storage;
- VirtualFile m_outside_region_storage;
- Region m_region;
-
public:
RegionSwitchStorage(VirtualFile&& i, VirtualFile&& o, Region r)
: m_inside_region_storage(std::move(i)), m_outside_region_storage(std::move(o)),
@@ -75,6 +70,11 @@ private:
return false;
}
}
+
+private:
+ VirtualFile m_inside_region_storage;
+ VirtualFile m_outside_region_storage;
+ Region m_region;
};
} // namespace FileSys