diff options
author | Alex Deucher <alex@t41p.hsd1.va.comcast.net> | 2007-12-26 12:29:47 -0500 |
---|---|---|
committer | Alex Deucher <alex@t41p.hsd1.va.comcast.net> | 2007-12-26 12:29:47 -0500 |
commit | bfa22d676a6f333503104041f62222f4de9bb7d8 (patch) | |
tree | 12388f4b7e2c2bd5b67f1d201cb9d2c2473fe337 /src | |
parent | 0c99554c6fab1192f5e8595469c21b5f33e1eb4f (diff) |
RADEON: fix typo that broke tv load detection
Diffstat (limited to 'src')
-rw-r--r-- | src/legacy_output.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/legacy_output.c b/src/legacy_output.c index 694e7c78..4b7fded5 100644 --- a/src/legacy_output.c +++ b/src/legacy_output.c @@ -562,15 +562,15 @@ legacy_dac_detect(ScrnInfoPtr pScrn, xf86OutputPtr output) if (OUTPUT_IS_TV) { if (xf86ReturnOptValBool(info->Options, OPTION_FORCE_TVOUT, FALSE)) { if (radeon_output->type == OUTPUT_STV) - radeon_output->MonType = MT_STV; + found = MT_STV; else - radeon_output->MonType = MT_CTV; + found = MT_CTV; } else { if (info->InternalTVOut) { if (radeon_output->load_detection) - radeon_output->MonType = radeon_detect_tv(pScrn); + found = radeon_detect_tv(pScrn); else - radeon_output->MonType = MT_NONE; + found = MT_NONE; } } } else { |