aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xREADME.md2
-rwxr-xr-xsrc/yuzu/main.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index 1f3db0567..835d7af65 100755
--- a/README.md
+++ b/README.md
@@ -1,7 +1,7 @@
1yuzu emulator early access 1yuzu emulator early access
2============= 2=============
3 3
4This is the source code for early-access 2139. 4This is the source code for early-access 2140.
5 5
6## Legal Notice 6## Legal Notice
7 7
diff --git a/src/yuzu/main.cpp b/src/yuzu/main.cpp
index 43c6a79ea..f076c4735 100755
--- a/src/yuzu/main.cpp
+++ b/src/yuzu/main.cpp
@@ -198,7 +198,7 @@ static void RemoveCachedContents() {
198} 198}
199 199
200GMainWindow::GMainWindow() 200GMainWindow::GMainWindow()
201 : system{std::make_unique<Core::System>()}, 201 : ui{std::make_unique<Ui::MainWindow>()}, system{std::make_unique<Core::System>()},
202 input_subsystem{std::make_shared<InputCommon::InputSubsystem>()}, 202 input_subsystem{std::make_shared<InputCommon::InputSubsystem>()},
203 config{std::make_unique<Config>(*system)}, 203 config{std::make_unique<Config>(*system)},
204 vfs{std::make_shared<FileSys::RealVfsFilesystem>()}, 204 vfs{std::make_shared<FileSys::RealVfsFilesystem>()},