Ozon1 : fixed cocktail mode [Kevin Pickell]

This commit is contained in:
Robbbert 2013-01-03 07:56:18 +00:00
parent 0d4f2a1a43
commit c69f16d054
3 changed files with 10 additions and 3 deletions

View File

@ -2214,7 +2214,7 @@ static MACHINE_CONFIG_DERIVED( ozon1, galaxold_base )
MCFG_PALETTE_INIT_OVERRIDE(galaxold_state,rockclim)
MCFG_PALETTE_LENGTH(32)
MCFG_VIDEO_START_OVERRIDE(galaxold_state,galaxold_plain)
MCFG_VIDEO_START_OVERRIDE(galaxold_state,ozon1)
MCFG_SOUND_ADD("aysnd", AY8910, PIXEL_CLOCK/4)
MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 0.50)
MACHINE_CONFIG_END
@ -3081,8 +3081,8 @@ GAME( 1984, bagmanm2, bagman, bagmanmc, bagmanmc, driver_device, 0, RO
GAME( 1982, dkongjrm, dkongjr, dkongjrm, dkongjrm, driver_device, 0, ROT90, "bootleg", "Donkey Kong Jr. (bootleg on Moon Cresta hardware)", GAME_WRONG_COLORS | GAME_IMPERFECT_SOUND | GAME_NO_COCKTAIL | GAME_SUPPORTS_SAVE )
GAME( 1982, porter, dockman, porter, porter, driver_device, 0, ROT90, "bootleg", "Port Man (bootleg on Moon Cresta hardware)", GAME_IMPERFECT_COLORS | GAME_NO_COCKTAIL )
GAME( 1982, tazzmang, tazmania, tazzmang, tazzmang, driver_device, 0, ROT90, "bootleg", "Tazz-Mania (bootleg on Galaxian hardware)", GAME_NO_COCKTAIL | GAME_SUPPORTS_SAVE )
GAME( 1983, bongo, 0, bongo, bongo, driver_device, 0, ROT90, "Jetsoft", "Bongo", GAME_NO_COCKTAIL | GAME_SUPPORTS_SAVE )
GAME( 1983, ozon1, 0, ozon1, ozon1, driver_device, 0, ROT90, "Proma", "Ozon I", GAME_NO_COCKTAIL | GAME_SUPPORTS_SAVE )
GAME( 1983, bongo, 0, bongo, bongo, driver_device, 0, ROT90, "Jetsoft", "Bongo", GAME_SUPPORTS_SAVE )
GAME( 1983, ozon1, 0, ozon1, ozon1, driver_device, 0, ROT90, "Proma", "Ozon I", GAME_SUPPORTS_SAVE )
GAME( 1983, ladybugg, ladybug, batman2, ladybugg, galaxold_state, ladybugg, ROT270, "bootleg", "Lady Bug (bootleg on Galaxian hardware)", GAME_NO_COCKTAIL | GAME_SUPPORTS_SAVE )
GAME( 1982, vstars, 0, mooncrst, porter, driver_device, 0, ROT90, "Competitive Video?", "Video Stars", GAME_NOT_WORKING )

View File

@ -157,6 +157,7 @@ public:
DECLARE_VIDEO_START(dkongjrm);
DECLARE_VIDEO_START(rockclim);
DECLARE_VIDEO_START(galaxold_plain);
DECLARE_VIDEO_START(ozon1);
DECLARE_VIDEO_START(bongo);
DECLARE_MACHINE_RESET(hunchbkg);
DECLARE_VIDEO_START(ckongs);

View File

@ -799,6 +799,12 @@ VIDEO_START_MEMBER(galaxold_state,harem)
m_modify_spritecode = harem_modify_spritecode;
}
VIDEO_START_MEMBER(galaxold_state,ozon1)
{
VIDEO_START_CALL_MEMBER(galaxold_plain);
m_bg_tilemap->set_scrolldx(0, 384-256);
}
VIDEO_START_MEMBER(galaxold_state,bongo)
{