diff options
author | Kean Johnson <kean@armory.com> | 2005-11-08 06:33:30 +0000 |
---|---|---|
committer | Kean Johnson <kean@armory.com> | 2005-11-08 06:33:30 +0000 |
commit | 5390c7ab05d23f64e6d9afaa558be246a6d6e1b4 (patch) | |
tree | b559bbac1f1e8159758556807a14af8501416316 /hw/xfree86/parser/Monitor.c | |
parent | f5814bf3fff5352ed6edef4c58aadf2d4593f094 (diff) |
See ChangeLog entry 2005-11-07 for details.
Diffstat (limited to 'hw/xfree86/parser/Monitor.c')
-rw-r--r-- | hw/xfree86/parser/Monitor.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/hw/xfree86/parser/Monitor.c b/hw/xfree86/parser/Monitor.c index 8669471a7..52ff5a735 100644 --- a/hw/xfree86/parser/Monitor.c +++ b/hw/xfree86/parser/Monitor.c @@ -676,16 +676,16 @@ xf86printMonitorSection (FILE * cf, XF86ConfMonitorPtr ptr) ptr->mon_width, ptr->mon_height); if ( ptr->mon_n_hsync || ptr->mon_n_vrefresh ) - fprintf(cf," ### Uncomment if you don't want to default to DDC:\n"); + fprintf(cf," ### Comment all HorizSync and VertSync values to use DDC:\n"); for (i = 0; i < ptr->mon_n_hsync; i++) { - fprintf (cf, "#\tHorizSync %2.1f - %2.1f\n", + fprintf (cf, "\tHorizSync %2.1f - %2.1f\n", ptr->mon_hsync[i].lo, ptr->mon_hsync[i].hi); } for (i = 0; i < ptr->mon_n_vrefresh; i++) { - fprintf (cf, "#\tVertRefresh %2.1f - %2.1f\n", + fprintf (cf, "\tVertRefresh %2.1f - %2.1f\n", ptr->mon_vrefresh[i].lo, ptr->mon_vrefresh[i].hi); } |