Przeglądaj źródła

Merge pull request #3763 from H27CK/vk-cmd

Add missing ;
Fernando Sahmkow 6 lat temu
rodzic
commit
63d2ba4f69
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      src/yuzu_cmd/emu_window/emu_window_sdl2_vk.cpp

+ 1 - 1
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;
 EmuWindow_SDL2_VK::~EmuWindow_SDL2_VK() = default;
 
 
 std::unique_ptr<Core::Frontend::GraphicsContext> EmuWindow_SDL2_VK::CreateSharedContext() const {
 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() {
 void EmuWindow_SDL2_VK::Present() {