When applying the Danganronpa hack, force 5551.
This prevents dithering from happening during the blit, and since dithering is off during drawing, allows the colors to be correct on some devices which always dither during blits.
This commit is contained in:
parent
8ab33795b3
commit
be76846679
1 changed files with 6 additions and 1 deletions
|
@ -787,7 +787,12 @@ void FramebufferManager::ResizeFramebufFBO(VirtualFramebuffer *vfb, u16 w, u16 h
|
|||
vfb->renderWidth = vfb->bufferWidth * renderWidthFactor;
|
||||
vfb->renderHeight = vfb->bufferHeight * renderHeightFactor;
|
||||
|
||||
if (g_Config.bTrueColor) {
|
||||
bool trueColor = g_Config.bTrueColor;
|
||||
if (hackForce04154000Download_ && vfb->fb_address == 0x00154000) {
|
||||
trueColor = false;
|
||||
}
|
||||
|
||||
if (trueColor) {
|
||||
vfb->colorDepth = FBO_8888;
|
||||
} else {
|
||||
switch (vfb->format) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue