Skip to content

Commit

Permalink
Wind Waker: When starting a demo at a non-zero frame, keep frame coun…
Browse files Browse the repository at this point in the history
…t correct
  • Loading branch information
themikelester committed Dec 28, 2024
1 parent e6f8d8e commit 6ef04e6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ZeldaWindWaker/d_demo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -450,8 +450,8 @@ export class dDemo_manager_c {
this.control.transformSetOrigin(originPos, rotY || 0);
}

this.frame = 0;
this.frameNoMsg = 0;
this.frame = startFrame || 0;
this.frameNoMsg = startFrame || 0;
this.curFile = data;
this.mode = EDemoMode.Playing;

Expand Down

0 comments on commit 6ef04e6

Please sign in to comment.