Skip to content
This repository was archived by the owner on May 5, 2025. It is now read-only.

Commit 4ed1b6e

Browse files
committed
Merge branch 'ajaus/cherry-pick-timeouts-off' into 'release/v1.0'
[REMIX-4022] Disable Timeouts by default. See merge request lightspeedrtx/bridge-remix-nv!152
2 parents 90415af + 2f05780 commit 4ed1b6e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

bridge.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -435,7 +435,7 @@
435435
# on application state, therefore changing the default in the settings
436436
# does not have much of an effect overall.
437437

438-
# disableTimeouts = False
438+
# disableTimeouts = True
439439

440440

441441
# Rather than copying an entire index/vertex/etc. buffer on every

src/util/config/global_options.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -397,7 +397,7 @@ class GlobalOptions {
397397
// Behaves the same as disableTimeoutsWhenDebugging, except that it does not require a debugger to be
398398
// attached. This is used to cover certain scenarios where an inactive game window may be running in
399399
// the background without actively rendering any frames for an undetermined amount of time.
400-
disableTimeouts = bridge_util::Config::getOption<bool>("disableTimeouts", false);
400+
disableTimeouts = bridge_util::Config::getOption<bool>("disableTimeouts", true);
401401

402402
// Rather than copying an entire index/vertex/etc. buffer on every buffer-type Unlock(), the bridge instead
403403
// directly stores all buffer data into a shared memory "heap" that both Client and Server are able to

0 commit comments

Comments
 (0)