mirror of
https://github.com/Lime3DS/Lime3DS
synced 2024-12-25 16:42:39 -06:00
Merge pull request #25 from Gamer64ytb/patch-1
GSP_GPU: Fix pokemon, mario & luigi games.
This commit is contained in:
commit
e64521491f
1 changed files with 1 additions and 3 deletions
|
@ -362,9 +362,7 @@ void GSP_GPU::SignalInterruptForThread(InterruptId interrupt_id, u32 thread_id)
|
|||
auto* info = GetFrameBufferInfo(thread_id, screen_id);
|
||||
if (info->is_dirty) {
|
||||
system.GPU().SetBufferSwap(screen_id, info->framebuffer_info[info->index]);
|
||||
// Decompiling the GSP module shows that the dirty bit is assigned 1 for top screen, 0
|
||||
// for bottom
|
||||
info->is_dirty.Assign(screen_id == 0);
|
||||
info->is_dirty.Assign(false);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue