1
0
mirror of https://github.com/blawar/GLideN64.git synced 2024-07-02 09:03:37 +00:00

Disable RDRAM dithering if nativeResFactor = 1 and dithering is enabled

Don’t dither twice.
This commit is contained in:
gizmo98 2020-03-06 22:18:23 +01:00 committed by Sergey Lipskiy
parent 0597632f8a
commit 1a6f83aa6c

View File

@ -258,7 +258,7 @@ u16 ColorBufferToRDRAM::_RGBAtoRGBA16(u32 _c, u32 x, u32 y) {
union RGBA c;
c.raw = _c;
if(gDP.otherMode.colorDither <= 1) {
if(gDP.otherMode.colorDither <= 1 && config.frameBufferEmulation.nativeResFactor != 1 && config.generalEmulation.enableDithering == 0) {
s32 threshold = 0;
switch(gDP.otherMode.colorDither){