Mat M
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
4 additions and
1 deletions
-
src/yuzu/main.cpp
|
|
@ -561,7 +561,10 @@ void GMainWindow::InitializeHotkeys() { |
|
|
Settings::values.use_frame_limit = !Settings::values.use_frame_limit; |
|
|
Settings::values.use_frame_limit = !Settings::values.use_frame_limit; |
|
|
UpdateStatusBar(); |
|
|
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), |
|
|
connect(hotkey_registry.GetHotkey("Main Window", "Increase Speed Limit", this), |
|
|
&QShortcut::activated, this, [&] { |
|
|
&QShortcut::activated, this, [&] { |
|
|
if (Settings::values.frame_limit < 9999 - SPEED_LIMIT_STEP) { |
|
|
if (Settings::values.frame_limit < 9999 - SPEED_LIMIT_STEP) { |
|
|
|