mirror of
https://github.com/holub/mame
synced 2025-06-25 05:44:23 +03:00
bogeyman.cpp, shootout.cpp: Corrected monitor orientation to ROT180. [Corrado Tomaselli]
This commit is contained in:
parent
24754663d2
commit
3c499eaeb1
@ -33,7 +33,7 @@ void bogeyman_state::ay8910_latch_w(uint8_t data)
|
|||||||
void bogeyman_state::ay8910_control_w(uint8_t data)
|
void bogeyman_state::ay8910_control_w(uint8_t data)
|
||||||
{
|
{
|
||||||
// bit 0 is flipscreen
|
// bit 0 is flipscreen
|
||||||
flip_screen_set(data & 0x01);
|
flip_screen_set(~data & 0x01);
|
||||||
|
|
||||||
// bit 5 goes to 8910 #0 BDIR pin
|
// bit 5 goes to 8910 #0 BDIR pin
|
||||||
if ((m_last_write & 0x20) == 0x20 && (data & 0x20) == 0x00)
|
if ((m_last_write & 0x20) == 0x20 && (data & 0x20) == 0x00)
|
||||||
@ -295,4 +295,5 @@ ROM_END
|
|||||||
|
|
||||||
/* Game Driver */
|
/* Game Driver */
|
||||||
|
|
||||||
GAME( 1985, bogeyman, 0, bogeyman, bogeyman, bogeyman_state, empty_init, ROT0, "Technos Japan", "Bogey Manor", MACHINE_IMPERFECT_COLORS | MACHINE_SUPPORTS_SAVE )
|
// ROT180 confirmed by Kold
|
||||||
|
GAME( 1985, bogeyman, 0, bogeyman, bogeyman, bogeyman_state, empty_init, ROT180, "Technos Japan", "Bogey Manor", MACHINE_IMPERFECT_COLORS | MACHINE_SUPPORTS_SAVE )
|
||||||
|
@ -75,7 +75,7 @@ void shootout_state::sound_cpu_command_w(uint8_t data)
|
|||||||
|
|
||||||
void shootout_state::flipscreen_w(uint8_t data)
|
void shootout_state::flipscreen_w(uint8_t data)
|
||||||
{
|
{
|
||||||
flip_screen_set(data & 0x01);
|
flip_screen_set(~data & 0x01);
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@ -432,7 +432,7 @@ void shootout_state::init_shootout()
|
|||||||
membank("bank1")->configure_entries(0, 16, memregion("maincpu")->base() + 0x8000, 0x4000);
|
membank("bank1")->configure_entries(0, 16, memregion("maincpu")->base() + 0x8000, 0x4000);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// ROT180 confirmed by Kold
|
||||||
GAME( 1985, shootout, 0, shootout, shootout, shootout_state, init_shootout, ROT0, "Data East USA", "Shoot Out (US)", MACHINE_SUPPORTS_SAVE )
|
GAME( 1985, shootout, 0, shootout, shootout, shootout_state, init_shootout, ROT180, "Data East USA", "Shoot Out (US)", MACHINE_SUPPORTS_SAVE )
|
||||||
GAME( 1985, shootoutj, shootout, shootouj, shootouj, shootout_state, init_shootout, ROT0, "Data East Corporation", "Shoot Out (Japan)", MACHINE_SUPPORTS_SAVE )
|
GAME( 1985, shootoutj, shootout, shootouj, shootouj, shootout_state, init_shootout, ROT180, "Data East Corporation", "Shoot Out (Japan)", MACHINE_SUPPORTS_SAVE )
|
||||||
GAME( 1985, shootoutb, shootout, shootouk, shootout, shootout_state, init_shootout, ROT0, "bootleg", "Shoot Out (Korean Bootleg)", MACHINE_SUPPORTS_SAVE )
|
GAME( 1985, shootoutb, shootout, shootouk, shootout, shootout_state, init_shootout, ROT180, "bootleg", "Shoot Out (Korean Bootleg)", MACHINE_SUPPORTS_SAVE )
|
||||||
|
@ -6937,6 +6937,7 @@ ROM_END
|
|||||||
/***********************************************************************/
|
/***********************************************************************/
|
||||||
|
|
||||||
|
|
||||||
|
// TODO: according to Kold at very least Athena is ROT180 not ROT0
|
||||||
GAME( 1983, marvins, 0, marvins, marvins, snk_state, empty_init, ROT270, "SNK", "Marvin's Maze", 0 )
|
GAME( 1983, marvins, 0, marvins, marvins, snk_state, empty_init, ROT270, "SNK", "Marvin's Maze", 0 )
|
||||||
GAME( 1984, vangrd2, 0, vangrd2, vangrd2, snk_state, empty_init, ROT270, "SNK", "Vanguard II", 0 )
|
GAME( 1984, vangrd2, 0, vangrd2, vangrd2, snk_state, empty_init, ROT270, "SNK", "Vanguard II", 0 )
|
||||||
GAME( 1984, madcrash, 0, vangrd2, madcrash, snk_state, empty_init, ROT0, "SNK", "Mad Crasher", 0 )
|
GAME( 1984, madcrash, 0, vangrd2, madcrash, snk_state, empty_init, ROT0, "SNK", "Mad Crasher", 0 )
|
||||||
|
Loading…
Reference in New Issue
Block a user