You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 4, 2020. It is now read-only.
In Evel Knievel (GBC) some BG tile map writes get dropped on the first scanline because the SGB mode never sets _isFirstFrame = false. Start New Game -> Select default Stage.
This game uses the OAM STAT IRQ and several other IRQs to perform work. The IRQ for the OAM STAT ends up pushing VRAM writes for the tile map updates to the moving BG text after the rendering mode of the PPU. But for scanline 0 the OAM STAT IRQ is missing since _isFirstFrame always evaluates to true. In this case they get dropped and the expanding/scrolling text gets corrupted.
Adding the assignment of _isFirstFrame = false to the block guarded by SGB is not a small change for the rendering pipe. I tried Pinball Fantasies to make sure it still works, but unsure if this exposes other issues.
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
In Evel Knievel (GBC) some BG tile map writes get dropped on the first scanline because the SGB mode never sets _isFirstFrame = false. Start New Game -> Select default Stage.
https://github.com/SourMesen/Mesen-S/blob/master/Core/GbPpu.cpp#L627
This game uses the OAM STAT IRQ and several other IRQs to perform work. The IRQ for the OAM STAT ends up pushing VRAM writes for the tile map updates to the moving BG text after the rendering mode of the PPU. But for scanline 0 the OAM STAT IRQ is missing since _isFirstFrame always evaluates to true. In this case they get dropped and the expanding/scrolling text gets corrupted.
Adding the assignment of _isFirstFrame = false to the block guarded by SGB is not a small change for the rendering pipe. I tried Pinball Fantasies to make sure it still works, but unsure if this exposes other issues.
The text was updated successfully, but these errors were encountered: