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:
Diffstat (limited to 'src/mpc-hc/VMROSD.cpp')
-rw-r--r--src/mpc-hc/VMROSD.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mpc-hc/VMROSD.cpp b/src/mpc-hc/VMROSD.cpp
index d2ebdb21d..918a45a49 100644
--- a/src/mpc-hc/VMROSD.cpp
+++ b/src/mpc-hc/VMROSD.cpp
@@ -1,5 +1,5 @@
/*
- * (C) 2006-2014 see Authors.txt
+ * (C) 2006-2015 see Authors.txt
*
* This file is part of MPC-HC.
*
@@ -363,8 +363,8 @@ void CVMROSD::Invalidate()
void CVMROSD::UpdateSeekBarPos(CPoint point)
{
m_llSeekPos = (point.x - m_rectBar.left) * (m_llSeekMax - m_llSeekMin) / (m_rectBar.Width() - SLIDER_CURSOR_WIDTH);
- m_llSeekPos = max(m_llSeekPos, m_llSeekMin);
- m_llSeekPos = min(m_llSeekPos, m_llSeekMax);
+ m_llSeekPos = std::max(m_llSeekPos, m_llSeekMin);
+ m_llSeekPos = std::min(m_llSeekPos, m_llSeekMax);
if (AfxGetAppSettings().bFastSeek ^ (GetKeyState(VK_SHIFT) < 0)) {
m_llSeekPos = m_pMainFrame->GetClosestKeyFrame(m_llSeekPos);