diff --git a/src/mame/drivers/jp.cpp b/src/mame/drivers/jp.cpp index ae88d00381f..8589b9ca562 100644 --- a/src/mame/drivers/jp.cpp +++ b/src/mame/drivers/jp.cpp @@ -3,7 +3,7 @@ /****************************************************************************************************** PINBALL -Juegos Populares +Juegos Populares / Automáticos Montecarlo All manuals are in Spanish. Schematic has a number of errors and omissions, so referring to PinMAME. @@ -28,6 +28,17 @@ Status: ToDo: - Mechanical sounds +******************************************************************************************************* + +Juan Paredes, the founder of Juegos Populares (and Petaco before that), started another pinball +company named Automáticos Montecarlo (with another partner named Rosés) just before closing Juegos +Populares because of economic issues. Some of the intellectual property was transferred from one +company to the other. Automáticos Montecarlo manufactured two pinballs just relabeling Juegos +Populares machines (using the same ROMs): Lortium and Pimbal. (Pimbal was a reissue of Quijote, also +from Juegos Populares.) A completely new pinball design, named Mediterráneo, was started but couldn't +be finished, as Juan Paredes died in a traffic accident while the project was at a very preliminary +stage. + *******************************************************************************************************/ #include "emu.h" @@ -742,5 +753,6 @@ GAME(1986, aqualand, 0, jps, jp, jp_state, empty_init, ROT0, "Juegos Po GAME(1986, aqualanda, aqualand, jps, jp, jp_state, empty_init, ROT0, "Juegos Populares", "Aqualand (set 2)", MACHINE_IS_SKELETON_MECHANICAL | MACHINE_SUPPORTS_SAVE ) GAME(1986, america, 0, jps, jp, jp_state, empty_init, ROT0, "Juegos Populares", "America 1492", MACHINE_IS_SKELETON_MECHANICAL | MACHINE_SUPPORTS_SAVE ) GAME(1986, olympus, 0, jps, jp, jp_state, empty_init, ROT0, "Juegos Populares", "Olympus (Juegos Populares)", MACHINE_IS_SKELETON_MECHANICAL | MACHINE_SUPPORTS_SAVE ) -GAME(1987, lortium, 0, jp, jp, jp_state, empty_init, ROT0, "Juegos Populares", "Lortium", MACHINE_IS_SKELETON_MECHANICAL | MACHINE_SUPPORTS_SAVE ) -GAME(19??, pimbal, 0, jp, jp, jp_state, empty_init, ROT0, "Juegos Populares", "Pimbal (Pinball 3000)", MACHINE_IS_SKELETON_MECHANICAL | MACHINE_SUPPORTS_SAVE ) + +GAME(1987, lortium, 0, jp, jp, jp_state, empty_init, ROT0, u8"Juegos Populares / Automáticos Montecarlo", "Lortium", MACHINE_IS_SKELETON_MECHANICAL | MACHINE_SUPPORTS_SAVE ) +GAME(19??, pimbal, 0, jp, jp, jp_state, empty_init, ROT0, u8"Juegos Populares / Automáticos Montecarlo", "Pimbal (Pinball 3000)", MACHINE_IS_SKELETON_MECHANICAL | MACHINE_SUPPORTS_SAVE )