mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Merge pull request #1561 from raven02/patch-8
Use dark grey color to identify CG is running instead of black
This commit is contained in:
commit
fc69f385fe
1 changed files with 2 additions and 1 deletions
|
@ -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…
Add table
Reference in a new issue