jp.cpp: Added notes and fixed manufacturer name for 'Lortium' and 'Pimbal (Pinball 3000)'. (#9971)

This commit is contained in:
ClawGrip 2022-06-25 00:25:14 +02:00 committed by GitHub
parent a942269252
commit 634dc3c90d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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 )