Skip to content

Commit 634a5f6

Browse files
committed
Raise max rewind depth to 3000
1 parent 307ea72 commit 634a5f6

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
- **Smoother FOV effects**
2020
- **Allowed orbiting around freecam mobj**
2121
- **Made _Screen Wipe Speed Percentage_ setting affect the _Fizzle_ fade**
22+
- **Raised maximum _Rewind Depth_ to 3000**
2223
- **Removed _Physical [Weapon] Recoil_ menu item**
2324

2425
## Bug Fixes

src/g_game.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6003,7 +6003,7 @@ void G_BindGameVariables(void)
60036003
BIND_NUM_GENERAL(rewind_interval, 1, 1, 600,
60046004
"Interval between rewind key-frames, in seconds");
60056005

6006-
BIND_NUM_GENERAL(rewind_depth, 60, 0, 600,
6006+
BIND_NUM_GENERAL(rewind_depth, 60, 0, 3000,
60076007
"Number of rewind key-frames to be stored (0 = No rewinding)");
60086008

60096009
BIND_NUM_GENERAL(rewind_timeout, 10, 0, 25,

0 commit comments

Comments
 (0)