From 3355ddcfb34bb634797f06be2d4193050c60d55a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A9o=20Lam?= Date: Sun, 15 Apr 2018 11:31:12 +0200 Subject: [PATCH] FileSystem: Fix member destruction order --- Source/Core/Core/IOS/FS/HostBackend/FS.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/Core/IOS/FS/HostBackend/FS.h b/Source/Core/Core/IOS/FS/HostBackend/FS.h index b30e1742f6..162a0f8320 100644 --- a/Source/Core/Core/IOS/FS/HostBackend/FS.h +++ b/Source/Core/Core/IOS/FS/HostBackend/FS.h @@ -77,8 +77,8 @@ private: std::shared_ptr OpenHostFile(const std::string& host_path); std::string m_root_path; - std::array m_handles{}; std::map> m_open_files; + std::array m_handles{}; }; } // namespace IOS::HLE::FS