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:
Unknown W. Brackets 2014-07-05 00:49:30 -07:00
parent 8ab33795b3
commit be76846679

View file

@ -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) {