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--src/mpc-hc/GoToDlg.cpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/mpc-hc/GoToDlg.cpp b/src/mpc-hc/GoToDlg.cpp
index 33bb5367e..7d7b88f9b 100644
--- a/src/mpc-hc/GoToDlg.cpp
+++ b/src/mpc-hc/GoToDlg.cpp
@@ -125,10 +125,8 @@ void CGoToDlg::OnParseTimeCode()
AfxGetApp()->WriteProfileInt(IDS_R_SETTINGS, IDS_RS_GOTO_LAST_USED, TYPE_TIME);
- // The hh and mm are declared volatile to work around a compiler bug with ICL 13.
- // It prevents the compiler to optimize out those variables from the computation.
- volatile unsigned int hh = 0;
- volatile unsigned int mm = 0;
+ unsigned int hh = 0;
+ unsigned int mm = 0;
float ss = 0.0f;
WCHAR c; // extra character to ensure the end of string was reached