summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/apple3.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/apple3.cpp')
-rw-r--r--src/mame/video/apple3.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/mame/video/apple3.cpp b/src/mame/video/apple3.cpp
index 724907d6c23..cfc4a675c5b 100644
--- a/src/mame/video/apple3.cpp
+++ b/src/mame/video/apple3.cpp
@@ -149,8 +149,8 @@ void apple3_state::text40(bitmap_ind16 &bitmap, const rectangle &cliprect)
uint8_t *ram = m_ram->pointer();
uint32_t ram_size = m_ram->size();
int smooth = m_va | (m_vb << 1) | (m_vc << 2);
- int beginrow = (cliprect.min_y - (cliprect.min_y % 8)) / 8;
- int endrow = (cliprect.max_y - (cliprect.max_y % 8) + 7) / 8;
+ int beginrow = (cliprect.top() - (cliprect.top() % 8)) / 8;
+ int endrow = (cliprect.bottom() - (cliprect.bottom() % 8) + 7) / 8;
for (y = beginrow; y <= endrow; y++)
{
@@ -220,8 +220,8 @@ void apple3_state::text80(bitmap_ind16 &bitmap, const rectangle &cliprect)
uint8_t *ram = m_ram->pointer();
uint32_t ram_size = m_ram->size();
int smooth = m_va | (m_vb << 1) | (m_vc << 2);
- int beginrow = (cliprect.min_y - (cliprect.min_y % 8)) / 8;
- int endrow = (cliprect.max_y - (cliprect.max_y % 8) + 7) / 8;
+ int beginrow = (cliprect.top() - (cliprect.top() % 8)) / 8;
+ int endrow = (cliprect.bottom() - (cliprect.bottom() % 8) + 7) / 8;
for (y = beginrow; y <= endrow; y++)
{
@@ -284,7 +284,7 @@ void apple3_state::graphics_hgr(bitmap_ind16 &bitmap, const rectangle &cliprect)
uint8_t *ram = m_ram->pointer();
int smooth = m_va | (m_vb << 1) | (m_vc << 2);
- for (y = cliprect.min_y; y <= cliprect.max_y; y++)
+ for (y = cliprect.top(); y <= cliprect.bottom(); y++)
{
ly = y;
if (m_smoothscr)
@@ -329,7 +329,7 @@ void apple3_state::graphics_chgr(bitmap_ind16 &bitmap, const rectangle &cliprect
uint8_t *ram = m_ram->pointer();
int smooth = m_va | (m_vb << 1) | (m_vc << 2);
- for (y = cliprect.min_y; y <= cliprect.max_y; y++)
+ for (y = cliprect.top(); y <= cliprect.bottom(); y++)
{
ly = y;
if (m_smoothscr)
@@ -386,7 +386,7 @@ void apple3_state::graphics_shgr(bitmap_ind16 &bitmap, const rectangle &cliprect
uint8_t *ram = m_ram->pointer();
int smooth = m_va | (m_vb << 1) | (m_vc << 2);
- for (y = cliprect.min_y; y <= cliprect.max_y; y++)
+ for (y = cliprect.top(); y <= cliprect.bottom(); y++)
{
ly = y;
if (m_smoothscr)
@@ -441,7 +441,7 @@ void apple3_state::graphics_chires(bitmap_ind16 &bitmap, const rectangle &clipre
uint8_t *ram = m_ram->pointer();
int smooth = m_va | (m_vb << 1) | (m_vc << 2);
- for (y = cliprect.min_y; y <= cliprect.max_y; y++)
+ for (y = cliprect.top(); y <= cliprect.bottom(); y++)
{
ly = y;
if (m_smoothscr)