Toggle 32 bit truecolor in option , default true
Update Core/Config.cpp
This commit is contained in:
parent
cba9baaca6
commit
c0dc85b99d
3 changed files with 7 additions and 0 deletions
|
@ -333,6 +333,10 @@ void FramebufferManager::SetRenderFrameBuffer() {
|
|||
case GE_FORMAT_565: vfb->colorDepth = FBO_565;
|
||||
case GE_FORMAT_8888: vfb->colorDepth = FBO_8888;
|
||||
}
|
||||
|
||||
if (g_Config.bTrueColor)
|
||||
vfb->colorDepth = FBO_8888;
|
||||
|
||||
//#ifdef ANDROID
|
||||
// vfb->colorDepth = FBO_8888;
|
||||
//#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue