forked from mia/Aegisub
Initialize a variable in the audio display that sometimes was used without any initial value being assigned to it.
Originally committed to SVN as r2969.
This commit is contained in:
parent
d40b0f36f6
commit
8a417de164
1 changed files with 1 additions and 0 deletions
|
@ -108,6 +108,7 @@ AudioDisplay::AudioDisplay(wxWindow *parent)
|
||||||
hasFocus = (wxWindow::FindFocus() == this);
|
hasFocus = (wxWindow::FindFocus() == this);
|
||||||
needImageUpdate = false;
|
needImageUpdate = false;
|
||||||
needImageUpdateWeak = true;
|
needImageUpdateWeak = true;
|
||||||
|
playingToEnd = false;
|
||||||
|
|
||||||
// Init
|
// Init
|
||||||
UpdateTimer.SetOwner(this,Audio_Update_Timer);
|
UpdateTimer.SetOwner(this,Audio_Update_Timer);
|
||||||
|
|
Loading…
Reference in a new issue