Skip to content

Commit

Permalink
Fix bug that enables more games to render without smear.
Browse files Browse the repository at this point in the history
  • Loading branch information
TheOfficialFloW committed Sep 23, 2020
1 parent ddd9c3c commit 628a5ee
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ This is an experimental plugin for [Adrenaline](https://github.com/TheOfficialFl

Please help testing games and filling out the [spreadsheet](https://docs.google.com/spreadsheets/d/1aZlmKwELcdpCb9ezI5iRfgcX9hoGxgL4tNC-673aKqk/edit#gid=0).

## Changelog v0.18.1

**This must be used with Adrenaline-7, not Adrenaline-6.9!**

- Fixed bug that enables more games to render without smear.

## Changelog v0.18

**This must be used with Adrenaline-7, not Adrenaline-6.9!**
Expand Down
2 changes: 1 addition & 1 deletion main.c
Original file line number Diff line number Diff line change
Expand Up @@ -593,7 +593,7 @@ void patchGeList(u32 *list, u32 *stall) {
u32 framebuf = FAKE_VRAM | (state.framebufptr & 0xffffff);
u32 pitch = state.framebufwidth & 0xffff;

if (pitch == 512) {
if (pitch == 512 || pitch == 480 || pitch == 960) {
state.ignore_framebuf = 0;
} else {
// *state.framebufwidth_addr = (GE_CMD_FRAMEBUFWIDTH << 24) | ((VRAM_1KB >> 24) << 16) | 0;
Expand Down

0 comments on commit 628a5ee

Please sign in to comment.