summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2017-05-25 10:31:55 -0400
committer AJR <ajrhacker@users.noreply.github.com>2017-05-25 10:31:55 -0400
commitfd400482c1a877a0db06ce86e8537dd97c2dfae0 (patch)
tree41c3e5c8a2995929cffe7dd16c71515af697ffed
parent237feef4838073c83bebbbd4a8adc3d6cb832781 (diff)
Another quick compilation fix (nw)
-rw-r--r--src/mame/video/vectrex.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/video/vectrex.cpp b/src/mame/video/vectrex.cpp
index 061075513fe..50723ccc07e 100644
--- a/src/mame/video/vectrex.cpp
+++ b/src/mame/video/vectrex.cpp
@@ -97,7 +97,7 @@ WRITE8_MEMBER(vectrex_state::vectrex_via_w)
m_refresh->adjust(period, 0, period);
else
m_refresh->adjust(
- min(period, m_refresh->remaining()),
+ std::min(period, m_refresh->remaining()),
0,
period);
break;