- --
Viewing Issue Advanced Details
| ID | Category [?] | Severity [?] | Reproducibility | Date Submitted | Last Update |
|---|---|---|---|---|---|
| 05165 | Graphics | Major | Always | Feb 16, 2013, 20:37 | Mar 12, 2013, 16:42 |
| Tester | ryuhabayusa | View Status | Public | Platform | MAME (Official Binary) |
| Assigned To | hap | Resolution | Fixed | OS | Windows Vista/7 (32-bit) |
| Status [?] | Resolved | Driver | |||
| Version | 0.148 | Fixed in Version | 0.148u2 | Build | Normal |
| Fixed in Git Commit | Github Pull Request # | ||||
| Summary | 05165: buckyaab and buckyuab: Graphics are missing | ||||
| Description |
As the title say, the graphics are missing on: test page, speech text on the intro screen, copyright on the game start/insert coin, names on select character (can be more?). Thanks! |
||||
| Steps To Reproduce | Just play the game. | ||||
| Additional Information | |||||
| Github Commit | |||||
| Flags | |||||
| Regression Version | |||||
| Affected Sets / Systems | buckyaab and buckyuab | ||||
|
Attached Files
|
|||||
Relationships
Notes
4
|
No.09394
Mamesick Senior Tester
Feb 16, 2013, 21:00
edited on: Feb 16, 2013, 21:02 |
Fix in moo.c:DRIVER_INIT_MEMBER(moo_state,moo)
{
m_game_type = (!strcmp(machine().system().name, "bucky") || !strcmp(machine().system().name, "buckyua"));
}
must be now to have "correct" gfx:DRIVER_INIT_MEMBER(moo_state,moo)
{
m_game_type = (!strcmp(machine().system().name, "bucky") || !strcmp(machine().system().name, "buckyuab") || !strcmp(machine().system().name, "buckyaab"));
}
Developers, feel free to apply to official source. |
|---|---|
|
No.09395
B2K24 Senior Tester
Feb 16, 2013, 21:00
|
I can confirm this. It doesn't happen with the parent, but does happen with the clones. |
|
No.09398
Haze Senior Tester
Feb 17, 2013, 13:49
|
it would be a lot cleaner just to add a DRIVER_INIT_MEMBER for bucky rather than extended this hack. |
|
No.09432
hap Developer
Mar 12, 2013, 16:42
|
Reason was indeed an oversight when renaming bucky's clones. Most of us dislike using strcmp this way because it makes mistakes like this one very easy to make. |