From: Nobuyoshi N. <nob...@so...> - 2002-07-01 21:27:41
|
なかだです。 At Mon, 01 Jul 2002 18:09:19 +0900, Nobuyoshi Nakada wrote: > とりあえずgammaとconfiguration protocolだけ対応してみました。 setだけでgetのほうを忘れてたので追加です。 --- xwindow/x_screen.c~ Mon Jul 1 17:56:15 2002 +++ xwindow/x_screen.c Tue Jul 2 05:29:52 2002 @@ -5223,4 +5223,14 @@ get_config( value = digit ; } + else if( strcmp( key , "contrast") == 0) + { + sprintf( digit , "%d" , screen->pic_mod.contrast) ; + value = digit ; + } + else if( strcmp( key , "gamma") == 0) + { + sprintf( digit , "%d" , screen->pic_mod.gamma) ; + value = digit ; + } else if( strcmp( key , "fade_ratio") == 0) { -- --- 僕の前にBugはない。 --- 僕の後ろにBugはできる。 中田 伸悦 |