- --
Viewing Issue Advanced Details
| ID | Category [?] | Severity [?] | Reproducibility | Date Submitted | Last Update |
|---|---|---|---|---|---|
| 00147 | Graphics | Minor | Always | Jan 23, 2008, 16:02 | May 6, 2021, 19:23 |
| Tester | Iaspis | View Status | Public | Platform | |
| Assigned To | dink | Resolution | Fixed | OS | |
| Status [?] | Resolved | Driver | |||
| Version | 0.117 | Fixed in Version | 0.232 | Build | |
| Fixed in Git Commit | d4c5b61 | Github Pull Request # | |||
| Summary | 00147: arabianm: Just before round 1 starts, there's a vertical line in the black screen that disappears when you enter the game | ||||
| Description | Just before round 1 starts, there's a vertical line in the black screen that disappears when you enter the game. | ||||
| Steps To Reproduce | |||||
| Additional Information |
Probable cause in 0.97u3: "Major video update to Taito F3 driver that amongst other things properly implements zoom & column scroll according to how the hardware does it, which not only fixes glitches in various games but allowed many hacks to be removed also. Sprite & tilemap clipping is also implemented, as is proper priority mixing and alpha-blending on the vram and pixel layers. [Bryan McPhail]" |
||||
| Github Commit | |||||
| Flags | Verified with Original | ||||
| Regression Version | 0.97u3 | ||||
| Affected Sets / Systems | arabianm | ||||
|
Attached Files
|
|||||
clipping off-by-1 fix for taito f3 [Show Content] [Hide Content]1306c1306 < if (cx >= clip_als && cx < clip_ars && !(cx >= clip_bls && cx < clip_brs)) \ --- > if (cx >= clip_als && cx < clip_ars-1 && !(cx >= clip_bls && cx < clip_brs)) \ 1322c1322 < if (cx >= m_clip_al[pf_num] && cx < m_clip_ar[pf_num] && !(cx >= m_clip_bl[pf_num] && cx < m_clip_br[pf_num])) \ --- > if (cx >= m_clip_al[pf_num] && cx < m_clip_ar[pf_num]-1 && !(cx >= m_clip_bl[pf_num] && cx < m_clip_br[pf_num])) \ | |||||
Relationships
| There are no relationship linked to this issue. |
Notes
2
|
No.18797
gspat Tester
May 4, 2021, 00:44
edited on: May 4, 2021, 00:49 |
This is still present in 0.213. Looking for vids, there are a few on youtube that show it. But latest is from 2020 with no mention of if it is MAME or something else. ie: Shows at 3:00 into this video: .:Edit: Video from PCB: |
|---|---|
|
No.18815
dink Tester
May 6, 2021, 05:39
edited on: May 6, 2021, 05:40 |
I fixed this many years ago. here's the fix for current MAME, video/taito_f3.cpp - see taito_f3.cpp.diff attachment |