diff --git a/src/mame/drivers/gunpey.c b/src/mame/drivers/gunpey.c index b4010912213..bb567ca63a3 100644 --- a/src/mame/drivers/gunpey.c +++ b/src/mame/drivers/gunpey.c @@ -253,8 +253,8 @@ UINT32 gunpey_state::screen_update_gunpey(screen_device &screen, bitmap_ind16 &b { x = (m_wram[count+3] >> 8) | ((m_wram[count+4] & 0x03) << 8); y = (m_wram[count+4] >> 8) | ((m_wram[count+4] & 0x30) << 4); - width = (m_wram[count+5] >> 8); - height = (m_wram[count+5] & 0xff); + height = (m_wram[count+5] >> 8); + width = (m_wram[count+5] & 0xff); bpp_sel = (m_wram[count+0] & 0x18); x-=0x160; @@ -480,7 +480,7 @@ WRITE8_MEMBER(gunpey_state::gunpey_blitter_w) { for (int x=0;x