Viewing Issue Advanced Details
ID Category [?] Severity [?] Reproducibility Date Submitted Last Update
09326 Graphics Minor Always 2 hours ago 35 minutes ago
Tester motomachi16 View Status Public Platform MAME (Official Binary)
Assigned To hap Resolution Fixed OS Windows (x64)
Status [?] Resolved Driver
Version 0.283 Fixed in Version 0.284GIT Build x64
Fixed in Git Commit 88b43a9 Github Pull Request #
Summary 09326: terraf and clones: The left and right sides of the image are cut off in the title demo scene.
Description The left and right edges of the demo image before the title is displayed are not displayed.
Steps To Reproduce
Additional Information
Github Commit
Flags
Regression Version
Affected Sets / Systems terraf and clones
Attached Files
png file icon 0000-0.png (13,317 bytes) 1 hour ago Uploaded by motomachi16
motomachi16
Relationships
There are no relationship linked to this issue.
Notes
2
User avatar
No.23896
motomachi16
Tester
1 hour ago
The following changes will allow it to display correctly:

armedf_v.cpp

void armedf_state::text_videoram_w(offs_t offset, u8 data)
{
m_text_videoram[offset] = data;
m_tx_tilemap->mark_tile_dirty(offset); // fix
}
User avatar
No.23899
hap
Developer
38 minutes ago
Almost but not quite.

for armedf, the dirty offset mask is as-is, so 0x7ff
for terraf, it is 0xbff (0x400 masked out instead of 0x800 due to strange tilemapping)