Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/mpc-hc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--docs/Changelog.txt2
-rw-r--r--src/mpc-hc/GoToDlg.cpp2
2 files changed, 3 insertions, 1 deletions
diff --git a/docs/Changelog.txt b/docs/Changelog.txt
index 6c6367a68..4be0209a4 100644
--- a/docs/Changelog.txt
+++ b/docs/Changelog.txt
@@ -13,6 +13,8 @@ next version - not released yet
+ Ticket #3548: Add British English translation
* Updated VirtualDub to v1.10.4-test12
* Updated Unrar to v5.0.0.12
+! Ticket #1478, Slightly improve the precision of the frame number in the Go To dialog.
+ The frame number was sometimes off by 1. This was easily noticeable when doing frame-stepping
! Ticket #3530, Internal LAV Splitter: the advanced subtitle selection modes were ignored
! Ticket #3523/#3533/#3551, Improve the stability of MPC-HC on buggy systems
! Ticket #3564, If "Keep history of recently opened file" option was enabled, MPC-HC crashed
diff --git a/src/mpc-hc/GoToDlg.cpp b/src/mpc-hc/GoToDlg.cpp
index 24be8def9..1f033a9ab 100644
--- a/src/mpc-hc/GoToDlg.cpp
+++ b/src/mpc-hc/GoToDlg.cpp
@@ -89,7 +89,7 @@ BOOL CGoToDlg::OnInitDialog()
}
if (m_fps > 0) {
- m_framestr.Format(_T("%d, %.3f"), (int)(m_fps * m_time / 10000000), m_fps);
+ m_framestr.Format(_T("%d, %.3f"), (int)(m_fps * m_time / 10000000 + 0.5), m_fps);
}
UpdateData(FALSE);