mirror of https://github.com/odrling/Aegisub
Fixed uninitialized variable (not that it matters)
Originally committed to SVN as r2490.
This commit is contained in:
parent
0c6f4484a0
commit
6dba041df6
|
@ -102,6 +102,7 @@ AudioDisplay::AudioDisplay(wxWindow *parent)
|
||||||
player = NULL;
|
player = NULL;
|
||||||
hold = 0;
|
hold = 0;
|
||||||
samples = 0;
|
samples = 0;
|
||||||
|
samplesPercent = 100;
|
||||||
hasFocus = (wxWindow::FindFocus() == this);
|
hasFocus = (wxWindow::FindFocus() == this);
|
||||||
needImageUpdate = false;
|
needImageUpdate = false;
|
||||||
needImageUpdateWeak = true;
|
needImageUpdateWeak = true;
|
||||||
|
|
Loading…
Reference in New Issue