summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/smsmcorp.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/smsmcorp.cpp')
-rw-r--r--src/mame/drivers/smsmcorp.cpp7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/mame/drivers/smsmcorp.cpp b/src/mame/drivers/smsmcorp.cpp
index c89f7cfce31..d67da1b4289 100644
--- a/src/mame/drivers/smsmcorp.cpp
+++ b/src/mame/drivers/smsmcorp.cpp
@@ -448,7 +448,6 @@ void smsmfg_state::video_w(offs_t offset, uint8_t data)
m_vid_regs[offset] = data;
if ( offset == 5 )
{
- int x,y;
int xstart = m_vid_regs[0] + m_vid_regs[1]*256;
int width = m_vid_regs[2];
int ystart = m_vid_regs[3];
@@ -461,12 +460,12 @@ void smsmfg_state::video_w(offs_t offset, uint8_t data)
if ( width == 0 )
width = 256;
- for ( y = ystart; y < ystart + height; y++ )
+ for ( int y = ystart; y < ystart + height; y++ )
{
- for ( x = xstart; x < xstart + width; x++ )
+ for ( int x = xstart; x < xstart + width; x++ )
{
if ( y < 256 )
- m_bitmap.pix16(y, x) = color;
+ m_bitmap.pix(y, x) = color;
}
}
}