mirror of https://github.com/odrling/Aegisub
Jump To dialog: use correct format specifier in wxString::Format
Avoids an assertion failure. Originally committed to SVN as r6803.
This commit is contained in:
parent
5d9268792f
commit
b8f7d5eb13
|
@ -117,7 +117,7 @@ void DialogJumpTo::OnEditTime (wxCommandEvent &) {
|
||||||
long newframe = c->videoController->FrameAtTime(JumpTime->GetTime());
|
long newframe = c->videoController->FrameAtTime(JumpTime->GetTime());
|
||||||
if (jumpframe != newframe) {
|
if (jumpframe != newframe) {
|
||||||
jumpframe = newframe;
|
jumpframe = newframe;
|
||||||
JumpFrame->ChangeValue(wxString::Format("%i", jumpframe));
|
JumpFrame->ChangeValue(wxString::Format("%li", jumpframe));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue