summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/bigevglf.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/bigevglf.cpp')
-rw-r--r--src/mame/video/bigevglf.cpp9
1 files changed, 4 insertions, 5 deletions
diff --git a/src/mame/video/bigevglf.cpp b/src/mame/video/bigevglf.cpp
index f7cc450a09f..7b05c7443a2 100644
--- a/src/mame/video/bigevglf.cpp
+++ b/src/mame/video/bigevglf.cpp
@@ -35,12 +35,11 @@ void bigevglf_state::bigevglf_vidram_addr_w(uint8_t data)
void bigevglf_state::bigevglf_vidram_w(offs_t offset, uint8_t data)
{
- uint32_t x, y, o;
- o = m_vidram_bank + offset;
+ uint32_t o = m_vidram_bank + offset;
m_vidram[o + 0x10000 * m_plane_selected] = data;
- y = o >>8;
- x = (o & 255);
- m_tmp_bitmap[m_plane_selected].pix16(y, x) = data;
+ uint32_t y = o >>8;
+ uint32_t x = (o & 255);
+ m_tmp_bitmap[m_plane_selected].pix(y, x) = data;
}
uint8_t bigevglf_state::bigevglf_vidram_r(offs_t offset)