summaryrefslogtreecommitdiff
path: root/src/core/core.cpp
diff options
context:
space:
mode:
authorGravatar Rodrigo Locatti2019-10-17 19:18:52 -0300
committerGravatar GitHub2019-10-17 19:18:52 -0300
commit7398466c33c848ee7b6e8eb7f479c5a2e53b0870 (patch)
tree24102a3157042adfc869e741a8b9f022f5c20d46 /src/core/core.cpp
parentMerge pull request #2980 from lioncash/warn (diff)
parentcore/core: Resolve -Wreorder warnings (diff)
downloadyuzu-7398466c33c848ee7b6e8eb7f479c5a2e53b0870.tar.gz
yuzu-7398466c33c848ee7b6e8eb7f479c5a2e53b0870.tar.xz
yuzu-7398466c33c848ee7b6e8eb7f479c5a2e53b0870.zip
Merge pull request #2990 from lioncash/warn
core: Resolve -Wreorder warnings
Diffstat (limited to 'src/core/core.cpp')
-rw-r--r--src/core/core.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/core.cpp b/src/core/core.cpp
index ddc767e30..a30253c50 100644
--- a/src/core/core.cpp
+++ b/src/core/core.cpp
@@ -112,8 +112,8 @@ FileSys::VirtualFile GetGameFileFromPath(const FileSys::VirtualFilesystem& vfs,
112} 112}
113struct System::Impl { 113struct System::Impl {
114 explicit Impl(System& system) 114 explicit Impl(System& system)
115 : kernel{system}, fs_controller{system}, cpu_core_manager{system}, 115 : kernel{system}, fs_controller{system}, cpu_core_manager{system}, reporter{system},
116 applet_manager{system}, reporter{system} {} 116 applet_manager{system} {}
117 117
118 Cpu& CurrentCpuCore() { 118 Cpu& CurrentCpuCore() {
119 return cpu_core_manager.GetCurrentCore(); 119 return cpu_core_manager.GetCurrentCore();