Skip to content

Commit ccdc7af

Browse files
committed
Increase max custom cam framerate for Steam Frame
1 parent 9bc8934 commit ccdc7af

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Source/Config.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -112,10 +112,10 @@ public class Config(string assemblyPath, ConfigFile file)
112112

113113
[ConfigDescriptor(stepSize: 15, pointerSize: 5)]
114114
public ConfigEntry<float> CustomCameraFramerate { get; } = file.Bind("Rendering", nameof(CustomCameraFramerate),
115-
120f,
115+
144f,
116116
new ConfigDescription(
117117
"The maximum frequency that the custom camera can render at. The custom camera framerate is limited to the VR headset's refresh rate, so setting this higher won't have any effect.",
118-
new AcceptableValueRange<float>(15, 120)));
118+
new AcceptableValueRange<float>(15, 144)));
119119

120120
[ConfigDescriptor(stepSize: 5)]
121121
public ConfigEntry<float> CustomCameraFOV { get; } = file.Bind("Rendering", nameof(CustomCameraFOV), 75f,

0 commit comments

Comments
 (0)