mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-06 22:25:41 +12:00
[GSP::GPU] Add forgotten error codes
This commit is contained in:
parent
1c8a9e8b56
commit
fef585ebb3
1 changed files with 4 additions and 0 deletions
|
@ -155,6 +155,8 @@ void GPUService::flushDataCache(u32 messagePointer) {
|
|||
u32 size = mem.read32(messagePointer + 8);
|
||||
u32 processHandle = handle = mem.read32(messagePointer + 16);
|
||||
printf("GSP::GPU::FlushDataCache(address = %08X, size = %X, process = %X\n", address, size, processHandle);
|
||||
|
||||
mem.write32(messagePointer + 4, Result::Success);
|
||||
}
|
||||
|
||||
void GPUService::setLCDForceBlack(u32 messagePointer) {
|
||||
|
@ -164,4 +166,6 @@ void GPUService::setLCDForceBlack(u32 messagePointer) {
|
|||
if (flag != 0) {
|
||||
printf("Filled both LCDs with black\n");
|
||||
}
|
||||
|
||||
mem.write32(messagePointer + 4, Result::Success);
|
||||
}
|
Loading…
Add table
Reference in a new issue