diff options
author | nalin <nalin> | 1999-07-18 10:10:31 +0000 |
---|---|---|
committer | nalin <nalin> | 1999-07-18 10:10:31 +0000 |
commit | bb22b0cf1fdb963be4b8f85366c354827328a52e (patch) | |
tree | 68351dba66603d0fd327653045d5fcb81aa870ff /ddcprobe | |
parent | 99a7e2960fc6922fca207bed08480865f9902f99 (diff) | |
download | anaconda-bb22b0cf1fdb963be4b8f85366c354827328a52e.tar.gz anaconda-bb22b0cf1fdb963be4b8f85366c354827328a52e.tar.xz anaconda-bb22b0cf1fdb963be4b8f85366c354827328a52e.zip |
update for interlacing reporting
Diffstat (limited to 'ddcprobe')
-rw-r--r-- | ddcprobe/ddcxinfo.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/ddcprobe/ddcxinfo.c b/ddcprobe/ddcxinfo.c index 14d85571f..2172f32f1 100644 --- a/ddcprobe/ddcxinfo.c +++ b/ddcprobe/ddcxinfo.c @@ -32,11 +32,12 @@ int main(int argc, char **argv) modelines = vbe_get_edid_modelines(); for(j=0; modelines && (modelines[j].refresh != 0); j++){ if(modelines[j].modeline) { - printf("# %dx%d, %1.1fHz\n%s\n", + printf("# %dx%d, %1.1fHz%s\n%s\n", modelines[j].width, modelines[j].height, modelines[j].refresh, - modelines[j].modeline); + modelines[j].modeline, + modelines[j].interlaced?"i":""); free(modelines[j].modeline); } } |