mirror of
https://github.com/libretro/ppsspp.git
synced 2024-11-29 03:10:28 +00:00
Use Dark Grey to identify CG is running instead of black
This commit is contained in:
parent
c7f5de9feb
commit
2b89ccfa50
@ -33,7 +33,8 @@ void MediaEngine::writeVideoImage(u32 bufferPtr, int frameWidth, int videoPixelM
|
||||
|
||||
// fake image. To be improved.
|
||||
if (Memory::IsValidAddress(bufferPtr))
|
||||
Memory::Memset(bufferPtr, 0x00, frameWidth * videoHeight_ * bpp);
|
||||
// Use Dark Grey to identify CG is running
|
||||
Memory::Memset(bufferPtr, 0x69, frameWidth * videoHeight_ * bpp);
|
||||
}
|
||||
|
||||
void MediaEngine::feedPacketData(u32 addr, int size)
|
||||
|
Loading…
Reference in New Issue
Block a user