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
43
Wiki
Activity
Browse Source
revert host fps fallback
pull/1639/head
bsp2
6 years ago
parent
bb811b1cec
commit
633385a5ed
1 changed files
with
2 additions
and
4 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+2
-4
src/vst2_main.cpp
+ 2
- 4
src/vst2_main.cpp
View File
@@ -643,14 +643,12 @@ public:
void setRefreshRate(float _hz) {
if(_hz < 15.0f)
{
#ifdef YAC_LINUX
redraw_ival_ms = 1000/30u; // start timer
#else
redraw_ival_ms = 0u;
#endif
}
else
{
redraw_ival_ms = sUI(1000.0f / _hz);
}
if(b_editor_open)
{
Write
Preview
Loading…
Cancel
Save