mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-09 23:55:40 +12:00
[GSP] Make dirty flag 1 bit
This commit is contained in:
parent
7da87a06a2
commit
a950d9a044
1 changed files with 2 additions and 2 deletions
|
@ -135,9 +135,9 @@ void GPUService::requestInterrupt(GPUInterrupt type) {
|
||||||
u8* info = &sharedMem[0x200 + screen * FBInfoSize];
|
u8* info = &sharedMem[0x200 + screen * FBInfoSize];
|
||||||
u8& dirtyFlag = info[1];
|
u8& dirtyFlag = info[1];
|
||||||
|
|
||||||
if (dirtyFlag) {
|
if (dirtyFlag & 1) {
|
||||||
// TODO: Submit buffer info here
|
// TODO: Submit buffer info here
|
||||||
dirtyFlag = 0;
|
dirtyFlag &= ~1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue