diff options
| author | 2022-11-17 19:20:18 -0500 | |
|---|---|---|
| committer | 2022-11-17 19:20:18 -0500 | |
| commit | e5a446a0df56d447e94c9afa98d52ff576a1aa66 (patch) | |
| tree | c0770bffcff6edb00c8ab503a719d3b7ab8a037e /src/yuzu_cmd | |
| parent | Merge pull request #9228 from HidroSaphire/patch-1 (diff) | |
| parent | Add break for default cases (diff) | |
| download | yuzu-e5a446a0df56d447e94c9afa98d52ff576a1aa66.tar.gz yuzu-e5a446a0df56d447e94c9afa98d52ff576a1aa66.tar.xz yuzu-e5a446a0df56d447e94c9afa98d52ff576a1aa66.zip | |
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.cpp | 1 |
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 | |||
| 84 | default: | 84 | default: |
| 85 | LOG_CRITICAL(Frontend, "Window manager subsystem not implemented"); | 85 | LOG_CRITICAL(Frontend, "Window manager subsystem not implemented"); |
| 86 | std::exit(EXIT_FAILURE); | 86 | std::exit(EXIT_FAILURE); |
| 87 | break; | ||
| 87 | } | 88 | } |
| 88 | 89 | ||
| 89 | OnResize(); | 90 | OnResize(); |