summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/midzeus.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/midzeus.cpp')
-rw-r--r--src/mame/video/midzeus.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/video/midzeus.cpp b/src/mame/video/midzeus.cpp
index 76b596c5a22..6032119a7bd 100644
--- a/src/mame/video/midzeus.cpp
+++ b/src/mame/video/midzeus.cpp
@@ -765,7 +765,7 @@ void midzeus_state::zeus_register_update(offs_t offset)
rectangle visarea(m_zeusbase[0xc6] & 0xffff, htotal - 3, 0, m_zeusbase[0xc8] & 0xffff);
if (htotal > 0 && vtotal > 0 && visarea.min_x < visarea.max_x && visarea.max_y < vtotal)
{
- m_screen->configure(htotal, vtotal, visarea, HZ_TO_ATTOSECONDS((double)MIDZEUS_VIDEO_CLOCK / 8.0 / (htotal * vtotal)));
+ m_screen->configure(htotal, vtotal, visarea, HZ_TO_ATTOSECONDS(MIDZEUS_VIDEO_CLOCK / 8.0 / (htotal * vtotal)));
zeus_cliprect = visarea;
zeus_cliprect.max_x -= zeus_cliprect.min_x;
zeus_cliprect.min_x = 0;