summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorFernando Sahmkow <fsahmkow27@gmail.com>2020-04-22 17:43:42 -0400
committerGitHub <noreply@github.com>2020-04-22 17:43:42 -0400
commit63d2ba4f698b9bcdaaf16576abc8f5ae88a42f25 (patch)
treec96e1160a0bb9738ac0999e7ba289c25cc1a399e /src
parent5ed13304e17aa572f2d9605fe78dc61615dadec6 (diff)
parent4d74578d3591082906d14b9c2f05b4c0cd7c024d (diff)
Merge pull request #3763 from H27CK/vk-cmd
Add missing ;
Diffstat (limited to 'src')
-rw-r--r--src/yuzu_cmd/emu_window/emu_window_sdl2_vk.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/yuzu_cmd/emu_window/emu_window_sdl2_vk.cpp b/src/yuzu_cmd/emu_window/emu_window_sdl2_vk.cpp
index 5149fa867..cb8e68a39 100644
--- a/src/yuzu_cmd/emu_window/emu_window_sdl2_vk.cpp
+++ b/src/yuzu_cmd/emu_window/emu_window_sdl2_vk.cpp
@@ -71,7 +71,7 @@ EmuWindow_SDL2_VK::EmuWindow_SDL2_VK(Core::System& system, bool fullscreen)
EmuWindow_SDL2_VK::~EmuWindow_SDL2_VK() = default;
std::unique_ptr<Core::Frontend::GraphicsContext> EmuWindow_SDL2_VK::CreateSharedContext() const {
- return std::make_unique<DummyContext>()
+ return std::make_unique<DummyContext>();
}
void EmuWindow_SDL2_VK::Present() {