diff options
author | Elyes HAOUAS <ehaouas@noos.fr> | 2022-11-16 11:35:32 +0000 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2022-11-18 15:21:09 -0800 |
commit | 4bcb8260871c339dc6c618d108cfbe2908bda7af (patch) | |
tree | 712d2da30133c6905dfb95bbd994750bd84096f1 | |
parent | 0e0fd56d9f3f9e4a9d4dfde18f01c5578113559c (diff) |
Res1280x800Table: Fix a typo on hexa value.
Replace "... AST2500PreCatchCRT), 60, 2, 35 }"
with "... AST2500PreCatchCRT), 60, 2, 0x35 }"
-rw-r--r-- | src/ast_mode.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ast_mode.c b/src/ast_mode.c index 530afa8..b1edcce 100644 --- a/src/ast_mode.c +++ b/src/ast_mode.c @@ -215,7 +215,7 @@ static VBIOS_ENHTABLE_STRUCT Res1920x1080Table[] = { /* 16:10 */ static VBIOS_ENHTABLE_STRUCT Res1280x800Table[] = { {1440, 1280, 48, 32, 823, 800, 3, 6, VCLK71, /* 60Hz CVT RB */ - (SyncNP | Charx8Dot | LineCompareOff | WideScreenMode | NewModeInfo | AST2500PreCatchCRT), 60, 2, 35 }, + (SyncNP | Charx8Dot | LineCompareOff | WideScreenMode | NewModeInfo | AST2500PreCatchCRT), 60, 2, 0x35 }, {1680, 1280, 72,128, 831, 800, 3, 6, VCLK83_5, /* 60Hz CVT */ (SyncPN | Charx8Dot | LineCompareOff | WideScreenMode | NewModeInfo), 60, 1, 0x35 }, {1680, 1280, 72,128, 831, 800, 3, 6, VCLK83_5, /* end */ |