Skip to content

Commit 985c2b0

Browse files
committed
fix: preserve cmd tool commands at tick 0
1 parent e601f19 commit 985c2b0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/Features/Tas/TasPlayer.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -638,7 +638,7 @@ TasFramebulk TasPlayer::SamplePreProcessedFramebulk(int slot, int tasTick, void
638638
if (tasTick == 1) {
639639
// on tick 1, we'll run the commands from the bulk at tick 0 because
640640
// of the annoying off-by-one thing explained in FetchInputs
641-
TasFramebulk fb0 = GetRawFramebulkAt(slot, 0);
641+
TasFramebulk fb0 = RequestProcessedFramebulkAt(slot, 0);
642642

643643
if (fb0.tick == 0) {
644644
for (std::string cmd : fb0.commands) {

0 commit comments

Comments
 (0)