summaryrefslogtreecommitdiff
path: root/src/yuzu_cmd
diff options
context:
space:
mode:
authorMorph <39850852+Morph1984@users.noreply.github.com>2022-11-17 19:20:18 -0500
committerGitHub <noreply@github.com>2022-11-17 19:20:18 -0500
commite5a446a0df56d447e94c9afa98d52ff576a1aa66 (patch)
treec0770bffcff6edb00c8ab503a719d3b7ab8a037e /src/yuzu_cmd
parent0e61d711e262ce464401c9ab18433e8b76e6dbe6 (diff)
parent6fa3faec658893c9fae19116232d24dac08babc7 (diff)
Merge pull request #9229 from Docteh/achy_breaky_heart
Add break for default cases
Diffstat (limited to 'src/yuzu_cmd')
-rw-r--r--src/yuzu_cmd/emu_window/emu_window_sdl2_vk.cpp1
1 files changed, 1 insertions, 0 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 65455c86e..25948328c 100644
--- a/src/yuzu_cmd/emu_window/emu_window_sdl2_vk.cpp
+++ b/src/yuzu_cmd/emu_window/emu_window_sdl2_vk.cpp
@@ -84,6 +84,7 @@ EmuWindow_SDL2_VK::EmuWindow_SDL2_VK(InputCommon::InputSubsystem* input_subsyste
default:
LOG_CRITICAL(Frontend, "Window manager subsystem not implemented");
std::exit(EXIT_FAILURE);
+ break;
}
OnResize();