fix remaining wonkiness with rewind buffering in replays (#5235)

This commit is contained in:
RickyRister 2024-12-11 01:54:36 -08:00 committed by GitHub
parent 69741d858c
commit 315cbc0925
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 15 additions and 10 deletions

View file

@ -35,7 +35,9 @@ private:
QList<int> histogram;
int maxBinValue, maxTime;
qreal timeScaleFactor;
int currentTime;
int currentVisualTime; // time currently displayed by the timeline
int currentProcessedTime; // time that events are currently processed up to. Could differ from visual time due to
// rewind buffering
int currentEvent;
void skipToTime(int newTime, bool doRewindBuffering);