summaryrefslogtreecommitdiffstats
path: root/src/yuzu/main.cpp
diff options
context:
space:
mode:
authorfearlessTobi <thm.frey@gmail.com>2019-02-16 17:05:27 +0100
committerfearlessTobi <thm.frey@gmail.com>2019-03-02 17:43:19 +0100
commit71c30a0a896fdf03c0d78f49b76d7cdb49cf544e (patch)
treeeed24ccb5ca2c73cc22fac036eef3ea281036048 /src/yuzu/main.cpp
parentMerge pull request #2139 from degasus/dma_pusher (diff)
downloadyuzu-71c30a0a896fdf03c0d78f49b76d7cdb49cf544e.tar
yuzu-71c30a0a896fdf03c0d78f49b76d7cdb49cf544e.tar.gz
yuzu-71c30a0a896fdf03c0d78f49b76d7cdb49cf544e.tar.bz2
yuzu-71c30a0a896fdf03c0d78f49b76d7cdb49cf544e.tar.lz
yuzu-71c30a0a896fdf03c0d78f49b76d7cdb49cf544e.tar.xz
yuzu-71c30a0a896fdf03c0d78f49b76d7cdb49cf544e.tar.zst
yuzu-71c30a0a896fdf03c0d78f49b76d7cdb49cf544e.zip
Diffstat (limited to '')
-rw-r--r--src/yuzu/main.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/yuzu/main.cpp b/src/yuzu/main.cpp
index 1d460c189..5ab7896d4 100644
--- a/src/yuzu/main.cpp
+++ b/src/yuzu/main.cpp
@@ -561,7 +561,10 @@ void GMainWindow::InitializeHotkeys() {
Settings::values.use_frame_limit = !Settings::values.use_frame_limit;
UpdateStatusBar();
});
- constexpr u16 SPEED_LIMIT_STEP = 5;
+ // TODO: Remove this comment/static whenever the next major release of
+ // MSVC occurs and we make it a requirement (see:
+ // https://developercommunity.visualstudio.com/content/problem/93922/constexprs-are-trying-to-be-captured-in-lambda-fun.html)
+ static constexpr u16 SPEED_LIMIT_STEP = 5;
connect(hotkey_registry.GetHotkey("Main Window", "Increase Speed Limit", this),
&QShortcut::activated, this, [&] {
if (Settings::values.frame_limit < 9999 - SPEED_LIMIT_STEP) {