Skip to content

Commit b0ee464

Browse files
authored
fix(server_openvr): 🐛 Fix stuck framerate on SteamVR (#2629)
1 parent 2305b95 commit b0ee464

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

alvr/server_openvr/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -388,7 +388,7 @@ extern "C" fn wait_for_vsync() {
388388
.read()
389389
.as_ref()
390390
.and_then(|ctx| ctx.duration_until_next_vsync())
391-
.unwrap_or(Duration::from_millis(50));
391+
.unwrap_or(Duration::from_millis(8));
392392

393393
thread::sleep(sleep_duration);
394394
}

0 commit comments

Comments
 (0)