mirror of
https://github.com/odrling/Aegisub
synced 2025-04-11 22:56:02 +02:00
remove some useless casts
Originally committed to SVN as r2323.
This commit is contained in:
parent
728b0d0a93
commit
0add56bfa0
@ -207,7 +207,7 @@ void FFmpegSourceVideoProvider::Close() {
|
||||
// Update indexing progress
|
||||
int __stdcall FFmpegSourceVideoProvider::UpdateIndexingProgress(int State, int64_t Current, int64_t Total, void *Private) {
|
||||
IndexingProgressDialog *Progress = (IndexingProgressDialog *)Private;
|
||||
Progress->ProgressDialog->SetProgress(int(Current), int(Total));
|
||||
Progress->ProgressDialog->SetProgress(Current, Total);
|
||||
|
||||
if (Progress->IndexingCanceled) {
|
||||
// Close();
|
||||
@ -312,6 +312,4 @@ double FFmpegSourceVideoProvider::GetFPS() {
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
#endif /* WITH_FFMPEGSOURCE */
|
||||
|
Loading…
x
Reference in New Issue
Block a user