diff options
author | Lioncash <mathew1800@gmail.com> | 2018-08-21 10:18:27 +0200 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2018-08-22 12:14:47 +0200 |
commit | dd35b4b18a69c02c3a22ba1a72504fbff69cfec0 (patch) | |
tree | dcae20ee477f4af3a66ffe9d0d5074f1f247a9f1 /src/video_core/video_core.cpp | |
parent | Merge pull request #1136 from tech4me/master (diff) | |
download | yuzu-dd35b4b18a69c02c3a22ba1a72504fbff69cfec0.tar yuzu-dd35b4b18a69c02c3a22ba1a72504fbff69cfec0.tar.gz yuzu-dd35b4b18a69c02c3a22ba1a72504fbff69cfec0.tar.bz2 yuzu-dd35b4b18a69c02c3a22ba1a72504fbff69cfec0.tar.lz yuzu-dd35b4b18a69c02c3a22ba1a72504fbff69cfec0.tar.xz yuzu-dd35b4b18a69c02c3a22ba1a72504fbff69cfec0.tar.zst yuzu-dd35b4b18a69c02c3a22ba1a72504fbff69cfec0.zip |
Diffstat (limited to 'src/video_core/video_core.cpp')
-rw-r--r-- | src/video_core/video_core.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/video_core.cpp b/src/video_core/video_core.cpp index 6780d1c16..07e3a7d24 100644 --- a/src/video_core/video_core.cpp +++ b/src/video_core/video_core.cpp @@ -10,7 +10,7 @@ namespace VideoCore { std::unique_ptr<RendererBase> CreateRenderer(Core::Frontend::EmuWindow& emu_window) { - return std::make_unique<RendererOpenGL>(emu_window); + return std::make_unique<OpenGL::RendererOpenGL>(emu_window); } } // namespace VideoCore |