diff options
author | ReinUsesLisp <reinuseslisp@airmail.cc> | 2019-01-15 20:28:42 +0100 |
---|---|---|
committer | ReinUsesLisp <reinuseslisp@airmail.cc> | 2019-02-07 02:23:40 +0100 |
commit | 7fefec585c805fa09951da11890bb90afb8a42a9 (patch) | |
tree | 739d06767d869ff1f0678aa20cb076a465521744 /src/core/core.cpp | |
parent | gl_shader_disk_cache: Guard reads and writes against failure (diff) | |
download | yuzu-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 'src/core/core.cpp')
-rw-r--r-- | src/core/core.cpp | 2 |
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; } |