This website works better with JavaScript.
Home
Help
Sign In
VCVRack
/
Rack
mirror of
https://github.com/VCVRack/Rack.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
38
Wiki
Activity
Browse Source
Set default frameRateLimit to 70 as a safety net for monitors without
v-sync.
tags/v1.0.0
Andrew Belt
5 years ago
parent
10112f0722
commit
db715063a9
2 changed files
with
2 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
include/settings.hpp
+1
-0
src/window.cpp
+ 1
- 1
include/settings.hpp
View File
@@ -21,7 +21,7 @@ struct Settings {
bool cpuMeter = false;
bool lockModules = false;
bool checkVersion = true;
float frameRateLimit = 0.0;
float frameRateLimit =
7
0.0;
bool frameRateSync = true;
bool skipLoadOnLaunch = false;
std::string patchPath;
+ 1
- 0
src/window.cpp
View File
@@ -401,6 +401,7 @@ void Window::run() {
// Compute actual frame rate
endTime = glfwGetTime();
// DEBUG("%g fps", 1 / (endTime - startTime));
frame++;
}
}
Write
Preview
Loading…
Cancel
Save