diff options
| author | 2015-06-22 15:32:08 +0100 | |
|---|---|---|
| committer | 2015-06-22 15:32:08 +0100 | |
| commit | 6b267a2aad8a70131efcfc20cae2e2dfd566a5a2 (patch) | |
| tree | 78a08a8052634fc99c0737ac41d1b881b61dc3af /src | |
| parent | 9adbb4dcf720aac00805ccd4744615598d3068fc (diff) | |
make battroad text layer colours match the flyer - more correct?
http://flyers.arcade-museum.com/flyers_video/irem/12110501.jpg
Diffstat (limited to 'src')
| -rw-r--r-- | src/mame/video/m62.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/mame/video/m62.c b/src/mame/video/m62.c index 3f309a9ffb3..d6411acc892 100644 --- a/src/mame/video/m62.c +++ b/src/mame/video/m62.c @@ -97,9 +97,10 @@ static const res_net_info battroad_char_net_info = { RES_NET_VCC_5V | RES_NET_VIN_TTL_OUT, { + { RES_NET_AMP_NONE, 0, 0, 2, { 470, 220 } }, { RES_NET_AMP_NONE, 0, 0, 3, { 1000, 470, 220 } }, - { RES_NET_AMP_NONE, 0, 0, 3, { 1000, 470, 220 } }, - { RES_NET_AMP_NONE, 0, 0, 2, { 470, 220 } } + { RES_NET_AMP_NONE, 0, 0, 3, { 1000, 470, 220 } } + } }; @@ -155,8 +156,8 @@ static const res_net_decode_info battroad_char_decode_info = 0x000, 0x01f, /* start/end */ /* R G B */ { 0x600, 0x600, 0x600 }, /* offsets */ - { 0, 3, 6 }, /* shifts */ - { 0x07, 0x07, 0x03 } /* masks */ + { 6, 3, 0 }, /* shifts */ + { 0x03, 0x07, 0x07 } /* masks */ }; |
