summaryrefslogtreecommitdiffstats
path: root/src/yuzu/bootmanager.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/yuzu/bootmanager.cpp')
-rw-r--r--src/yuzu/bootmanager.cpp13
1 files changed, 2 insertions, 11 deletions
diff --git a/src/yuzu/bootmanager.cpp b/src/yuzu/bootmanager.cpp
index 98161cc27..b064c9c64 100644
--- a/src/yuzu/bootmanager.cpp
+++ b/src/yuzu/bootmanager.cpp
@@ -153,17 +153,8 @@ public:
// disable vsync for any shared contexts
auto format = share_context->format();
- const int swap_interval = [&]() {
- switch (Settings::values.vsync_mode.GetValue()) {
- case Settings::VSyncMode::Immediate:
- return 0;
- case Settings::VSyncMode::FIFO:
- return 1;
- case Settings::VSyncMode::Mailbox:
- return 2;
- }
- return 0;
- }();
+ const int swap_interval =
+ Settings::values.vsync_mode.GetValue() == Settings::VSyncMode::Immediate ? 0 : 1;
format.setSwapInterval(main_surface ? swap_interval : 0);