Commit d190021

Nick Faro committed on
Probably fix that supremely annoying issue where it would reset the order to position 0 when halting the song sometimes
commit d190021bb5eda68d8201f13b1f57a5eb2898a80d parent 8be9a67
2 changed files +1−2
Modifiedsymparser.pas +0−2
@@ -91,8 +91,6 @@ begin
91 Exit; 91 Exit;
92 end; 92 end;
93 93
94 writeln('poking ', symbol, ' with ', value);
95
96 spokeb(SymbolTable.KeyData[Symbol], Value); 94 spokeb(SymbolTable.KeyData[Symbol], Value);
97 end; 95 end;
98 96
Modifiedtracker.pas +1−0
@@ -1108,6 +1108,7 @@ end;
1108 procedure TfrmTracker.HaltPlayback; 1108 procedure TfrmTracker.HaltPlayback;
1109 begin 1109 begin
1110 LockPlayback; 1110 LockPlayback;
1111 Application.ProcessMessages; // flush out any FD messages
1111 GetROMReady('halt.gb'); 1112 GetROMReady('halt.gb');
1112 ParseSymFile('halt.sym'); 1113 ParseSymFile('halt.sym');
1113 UnlockPlayback; 1114 UnlockPlayback;