- --
Viewing Issue Advanced Details
| ID | Category [?] | Severity [?] | Reproducibility | Date Submitted | Last Update |
|---|---|---|---|---|---|
| 03103 | Color/Palette | Minor | Always | Apr 11, 2009, 09:38 | May 1, 2011, 20:05 |
| Tester | kunikuni | View Status | Public | Platform | MAME (Official Binary) |
| Assigned To | Resolution | Fixed | OS | Windows XP/Vista 32-bit | |
| Status [?] | Resolved | Driver | |||
| Version | 0.130 | Fixed in Version | 0.142u3 | Build | Normal |
| Fixed in Git Commit | Github Pull Request # | ||||
| Summary | 03103: all sets in mrdo.c: The color of "SCENE4" is inaccurate. | ||||
| Description | The color of "SCENE4" is inaccurate. | ||||
| Steps To Reproduce | |||||
| Additional Information | |||||
| Github Commit | |||||
| Flags | Verified with Original | ||||
| Regression Version | |||||
| Affected Sets / Systems | all sets in mrdo.c | ||||
|
Attached Files
|
|||||
Relationships
| There are no relationship linked to this issue. |
Notes
3
|
No.04185
Tafoid Administrator
Apr 11, 2009, 14:04
|
Confirming based on your snap. |
|---|---|
|
No.07386
kunikuni Tester
Apr 21, 2011, 14:58
|
Please try. "src/mame/video/mrdo.c" const float potadjust = 0.7f; /* diode voltage drop */ | v const float potadjust = 0.68f; /* diode voltage drop */ weight[i] = 0xff * pot[i] / pot[0x0f]; | v weight[i] = 0xff * pot[i] / pot[0x0f]; if (weight[i] < 0) weight[i] = 0; if (weight[i] > 0xff) weight[i] = 0xff; |
|
No.07413
hap Developer
May 1, 2011, 20:02
|
Yeah, weight was able to go below 0, that was wrong. I won't touch potadjust though. Now, title logo looks correct again, and scene4 is pink instead of green. Thanks. =) |