mirror of
https://github.com/holub/mame
synced 2025-05-05 05:53:05 +03:00
Fix MT #07416
This commit is contained in:
parent
1a600c1d1a
commit
9b79444157
@ -45,12 +45,14 @@ Denjin Makai
|
||||
|
||||
- Needs to patch a sound-related comm to make this to work, same as SD Gundam Psycho Salamander No Kyoui (68k never writes to port 6 for whatever reason).
|
||||
|
||||
- There are a bunch of unemulated registers, one of them seems to be a brightness control of some sort. Needs a PCB side-by-side test.
|
||||
|
||||
- backdrop color is ugly, especially noticeable in the port harbour stage (level 4). It should be dark blue or black but it's currently grey.
|
||||
|
||||
- there are some ROM writes from time to time, could be a coding bug or something related to the protection.
|
||||
|
||||
- There's a minor gap in one of the transitions during final stage, after the conveyor belt and the horizontal elevator (the one with tons of grenades), this is known to not happen on a real PCB.
|
||||
|
||||
- "Mai T Joplin" text in credits is slightly off of screen area even on real HW (btanb)
|
||||
|
||||
- Initials can be entered into ranking screen only if player(s) never ever continues (btanb)
|
||||
|
||||
Godzilla
|
||||
--------
|
||||
|
||||
|
@ -73,9 +73,10 @@ void legionna_state::heatbrl_setgfxbank(u16 data)
|
||||
/*xxx- --- ---- ---- banking*/
|
||||
void legionna_state::denjinmk_setgfxbank(u16 data)
|
||||
{
|
||||
m_fore_gfx_bank = (data & 0x2000) >> 1;//???
|
||||
m_back_gfx_bank = (data & 0x4000) >> 2;
|
||||
m_mid_gfx_bank = (data & 0x8000) >> 3;//???
|
||||
// this is either 0x0000 or 0xe000, except in two endings (MT #07416)
|
||||
m_back_gfx_bank = (data & 0x2000) >> 1; // Makai/Tarukusu endings
|
||||
m_mid_gfx_bank = (data & 0x4000) >> 2; //???
|
||||
m_fore_gfx_bank = (data & 0x8000) >> 3; //???
|
||||
|
||||
m_foreground_layer->mark_all_dirty();
|
||||
m_background_layer->mark_all_dirty();
|
||||
|
Loading…
Reference in New Issue
Block a user