summaryrefslogtreecommitdiffstats
path: root/src/core
diff options
context:
space:
mode:
authorReinUsesLisp <reinuseslisp@airmail.cc>2019-01-15 20:28:42 +0100
committerReinUsesLisp <reinuseslisp@airmail.cc>2019-02-07 02:23:40 +0100
commit7fefec585c805fa09951da11890bb90afb8a42a9 (patch)
tree739d06767d869ff1f0678aa20cb076a465521744 /src/core
parentgl_shader_disk_cache: Guard reads and writes against failure (diff)
downloadyuzu-7fefec585c805fa09951da11890bb90afb8a42a9.tar
yuzu-7fefec585c805fa09951da11890bb90afb8a42a9.tar.gz
yuzu-7fefec585c805fa09951da11890bb90afb8a42a9.tar.bz2
yuzu-7fefec585c805fa09951da11890bb90afb8a42a9.tar.lz
yuzu-7fefec585c805fa09951da11890bb90afb8a42a9.tar.xz
yuzu-7fefec585c805fa09951da11890bb90afb8a42a9.tar.zst
yuzu-7fefec585c805fa09951da11890bb90afb8a42a9.zip
Diffstat (limited to '')
-rw-r--r--src/core/core.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/core.cpp b/src/core/core.cpp
index c8d7c442a..1d71312aa 100644
--- a/src/core/core.cpp
+++ b/src/core/core.cpp
@@ -123,7 +123,7 @@ struct System::Impl {
Service::Init(service_manager, *virtual_filesystem);
GDBStub::Init();
- renderer = VideoCore::CreateRenderer(emu_window);
+ renderer = VideoCore::CreateRenderer(emu_window, system);
if (!renderer->Init()) {
return ResultStatus::ErrorVideoCore;
}