summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Deucher <alexdeucher@gmail.com>2008-10-10 11:09:27 -0400
committerAlex Deucher <alexdeucher@gmail.com>2008-10-10 11:09:27 -0400
commitc0e6cb6d0eeef8f2ea60d840e1cd668fa92cd7f9 (patch)
treedc2c1e6ce18fc9f2cea5224ebb17508256deb457
parent9eb2b6cd28224f0cbbabf3df451696ae1a845b9c (diff)
Fix grey level dithering setup
-rw-r--r--src/atombios_output.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/atombios_output.c b/src/atombios_output.c
index a770177f..148a1da0 100644
--- a/src/atombios_output.c
+++ b/src/atombios_output.c
@@ -346,7 +346,7 @@ atombios_output_digital_setup(xf86OutputPtr output, int device, DisplayModePtr m
disp_data2.ucTemporal = PANEL_ENCODER_TEMPORAL_DITHER_EN;
if (radeon_output->lvds_misc & (1 << 1))
disp_data2.ucTemporal |= PANEL_ENCODER_TEMPORAL_DITHER_DEPTH;
- if (((radeon_output->lvds_misc >> 2) & 0x3) == 4)
+ if (((radeon_output->lvds_misc >> 2) & 0x3) == 2)
disp_data2.ucTemporal |= PANEL_ENCODER_TEMPORAL_LEVEL_4;
}
} else {