diff --git a/aegisub/src/dialog_jumpto.cpp b/aegisub/src/dialog_jumpto.cpp index 0cf998a5a..d597a36cc 100644 --- a/aegisub/src/dialog_jumpto.cpp +++ b/aegisub/src/dialog_jumpto.cpp @@ -117,7 +117,7 @@ void DialogJumpTo::OnEditTime (wxCommandEvent &) { long newframe = c->videoController->FrameAtTime(JumpTime->GetTime()); if (jumpframe != newframe) { jumpframe = newframe; - JumpFrame->ChangeValue(wxString::Format("%i", jumpframe)); + JumpFrame->ChangeValue(wxString::Format("%li", jumpframe)); } }