diff options
author | 2015-07-28 17:17:56 +0200 | |
---|---|---|
committer | 2015-07-28 17:17:56 +0200 | |
commit | 3c2142c3234778f8455e7c6fcf2782327975e98a (patch) | |
tree | ffe05db073373fc8cf92a233d6e61d933044b0e9 /src/mess/drivers/hh_ucom4.c | |
parent | c21ae45a19440a703873ca30148d1a54ddfdc754 (diff) |
added Bandai Pengo and Burgertime tabletops (also marked not working until tested with external artwork) [hap, Kevin Horton, Rik]
Diffstat (limited to 'src/mess/drivers/hh_ucom4.c')
-rw-r--r-- | src/mess/drivers/hh_ucom4.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mess/drivers/hh_ucom4.c b/src/mess/drivers/hh_ucom4.c index f2bbe1685f3..a6c9301e988 100644 --- a/src/mess/drivers/hh_ucom4.c +++ b/src/mess/drivers/hh_ucom4.c @@ -1871,7 +1871,7 @@ public: void tmpacman_state::prepare_display() { UINT8 grid = BITSWAP8(m_grid,0,1,2,3,4,5,6,7); - UINT32 plate = BITSWAP24(m_plate,23,22,21,20,19,16,17,18,11,10,9,8,0,2,3,1,4,5,6,7,12,13,14,15); + UINT32 plate = BITSWAP24(m_plate,23,22,21,20,19,16,17,18,11,10,9,8,0,2,3,1,4,5,6,7,12,13,14,15) | 0x100; display_matrix(19, 8, plate, grid); } @@ -1974,7 +1974,7 @@ public: void tmscramb_state::prepare_display() { - UINT32 plate = BITSWAP24(m_plate,23,22,21,20,19,18,17,3,15,2,14,1,13,16,0,12,8,4,9,5,10,6,11,7); + UINT32 plate = BITSWAP24(m_plate,23,22,21,20,19,18,17,3,15,2,14,1,13,16,0,12,8,4,9,5,10,6,11,7) | 0x400; display_matrix(17, 10, plate, m_grid); } @@ -2076,7 +2076,7 @@ public: void tcaveman_state::prepare_display() { UINT8 grid = BITSWAP8(m_grid,0,1,2,3,4,5,6,7); - UINT32 plate = BITSWAP24(m_plate,23,22,21,20,19,10,11,5,6,7,8,0,9,2,18,17,16,3,15,14,13,12,4,1); + UINT32 plate = BITSWAP24(m_plate,23,22,21,20,19,10,11,5,6,7,8,0,9,2,18,17,16,3,15,14,13,12,4,1) | 0x40; display_matrix(19, 8, plate, grid); } |