- --
Viewing Issue Advanced Details
ID | Category [?] | Severity [?] | Reproducibility | Date Submitted | Last Update |
---|---|---|---|---|---|
05268 | Color/Palette | Minor | Always | Aug 20, 2013, 21:17 | Aug 21, 2013, 14:54 |
Tester | MrPopsicle43 | View Status | Public | Platform | MAME (Official Binary) |
Assigned To | Osso | Resolution | Fixed | OS | Windows Vista/7/8 (64-bit) |
Status [?] | Resolved | Driver | |||
Version | 0.149u1 | Fixed in Version | 0.150 | Build | 64-bit |
Fixed in Git Commit | Github Pull Request # | ||||
Summary | 05268: todruaga: Sprites use wrong colors | ||||
Description | Player and enemy sprites have this issue. Doors and keys are unaffected. | ||||
Steps To Reproduce | |||||
Additional Information | |||||
Github Commit | |||||
Flags | |||||
Regression Version | 0.149 | ||||
Affected Sets / Systems | todruaga | ||||
Attached Files
|
0000.png (4,248 bytes) Aug 20, 2013, 21:17 Uploaded by MrPopsicle43
| ||||
0001.png (2,985 bytes) Aug 20, 2013, 21:37 Uploaded by MrPopsicle43 How the game should look
| |||||
todruaga_fix.diff (2,254 bytes) Aug 21, 2013, 07:28 Uploaded by Osso Fix for the reported issue [Show Content] [Hide Content]diff -Nru srcold/mame/drivers/mappy.c src/mame/drivers/mappy.c --- srcold/mame/drivers/mappy.c 2013-08-20 05:58:00.000000000 +0200 +++ src/mame/drivers/mappy.c 2013-08-21 08:48:28.000000000 +0200 @@ -1875,6 +1875,13 @@ MCFG_NAMCO56XX_ADD("namcoio_2", intf1) MACHINE_CONFIG_END +static MACHINE_CONFIG_DERIVED( todruaga, digdug2 ) + + /* video hardware */ + MCFG_GFXDECODE(todruaga) + MCFG_PALETTE_LENGTH(64*4+64*16) +MACHINE_CONFIG_END + static MACHINE_CONFIG_START( motos, mappy_state ) MCFG_FRAGMENT_ADD(mappy_common) @@ -2390,9 +2397,9 @@ /* 2x6809, scroling tilemap, 4bpp sprites (Super Pacman type) */ GAME( 1983, mappy, 0, mappy, mappy, mappy_state, mappy, ROT90, "Namco", "Mappy (US)", GAME_SUPPORTS_SAVE ) GAME( 1983, mappyj, mappy, mappy, mappy, mappy_state, mappy, ROT90, "Namco", "Mappy (Japan)", GAME_SUPPORTS_SAVE ) -GAME( 1984, todruaga, 0, digdug2, todruaga, mappy_state, druaga, ROT90, "Namco", "The Tower of Druaga (New Ver.)", GAME_SUPPORTS_SAVE ) -GAME( 1984, todruagao,todruaga, digdug2, todruaga, mappy_state, druaga, ROT90, "Namco", "The Tower of Druaga (Old Ver.)", GAME_SUPPORTS_SAVE ) -GAME( 1984, todruagas,todruaga, digdug2, todruaga, mappy_state, druaga, ROT90, "bootleg? (Sidam)", "The Tower of Druaga (Sidam)", GAME_SUPPORTS_SAVE ) +GAME( 1984, todruaga, 0, todruaga, todruaga, mappy_state, druaga, ROT90, "Namco", "The Tower of Druaga (New Ver.)", GAME_SUPPORTS_SAVE ) +GAME( 1984, todruagao,todruaga, todruaga, todruaga, mappy_state, druaga, ROT90, "Namco", "The Tower of Druaga (Old Ver.)", GAME_SUPPORTS_SAVE ) +GAME( 1984, todruagas,todruaga, todruaga, todruaga, mappy_state, druaga, ROT90, "bootleg? (Sidam)", "The Tower of Druaga (Sidam)", GAME_SUPPORTS_SAVE ) GAME( 1985, digdug2, 0, digdug2, digdug2, mappy_state, digdug2, ROT90, "Namco", "Dig Dug II (New Ver.)", GAME_SUPPORTS_SAVE ) GAME( 1985, digdug2o, digdug2, digdug2, digdug2, mappy_state, digdug2, ROT90, "Namco", "Dig Dug II (Old Ver.)", GAME_SUPPORTS_SAVE ) GAME( 1985, motos, 0, motos, motos, mappy_state, motos, ROT90, "Namco", "Motos", GAME_SUPPORTS_SAVE ) | |||||
Relationships
There are no relationship linked to this issue. |
Notes
2
No.09745
Tafoid Administrator
Aug 21, 2013, 00:51
edited on: Aug 21, 2013, 01:17 |
Confirmed breakage as shown in snaps just a couple days before 0.149 went out. In playing you can see that the character has palette issues as well as comparing the first level slimes not being green. Daily testing seems to indicate r23528 is the cause (modernization of some namco 5xxx devices) |
---|---|
No.09746
Osso Moderator
Aug 21, 2013, 05:45
edited on: Aug 21, 2013, 07:28 |
Thanks for the report, I'll look into it EDIT: Ok, it seems we screwed up while reorganizing the machine_configs. I attach a patch that fixes the issue. I'll commit it this evening, if noone beats me to it. |