From 50eee9b2185c59c32fb82cf464230a058edd10ea Mon Sep 17 00:00:00 2001 From: Liam Date: Sat, 12 Aug 2023 15:18:55 -0400 Subject: fssystem: rework for yuzu style --- src/core/file_sys/fssystem/fssystem_switch_storage.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/core/file_sys/fssystem/fssystem_switch_storage.h') 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 -- cgit v1.2.3