loader consoles: Implement SGR 24, 25
Mostly for completeness sake- implement 24 (no underline) and 25 (no blink) MFC after: 3 days
This commit is contained in:
parent
1c1692795a
commit
bc40337bb0
@ -386,6 +386,10 @@ efi_term_emu(int c)
|
|||||||
case 22: /* normal intensity */
|
case 22: /* normal intensity */
|
||||||
fg_c &= ~0x8;
|
fg_c &= ~0x8;
|
||||||
break;
|
break;
|
||||||
|
case 24: /* not underline */
|
||||||
|
case 25: /* not blinking */
|
||||||
|
bg_c &= ~0x8;
|
||||||
|
break;
|
||||||
case 30: case 31: case 32: case 33:
|
case 30: case 31: case 32: case 33:
|
||||||
case 34: case 35: case 36: case 37:
|
case 34: case 35: case 36: case 37:
|
||||||
fg_c = ansi_col[args[i] - 30];
|
fg_c = ansi_col[args[i] - 30];
|
||||||
|
@ -452,6 +452,10 @@ vidc_term_emu(int c)
|
|||||||
case 22: /* normal intensity */
|
case 22: /* normal intensity */
|
||||||
fg_c &= ~0x8;
|
fg_c &= ~0x8;
|
||||||
break;
|
break;
|
||||||
|
case 24: /* not underline */
|
||||||
|
case 25: /* not blinking */
|
||||||
|
bg_c &= ~0x8;
|
||||||
|
break;
|
||||||
case 30: case 31: case 32: case 33:
|
case 30: case 31: case 32: case 33:
|
||||||
case 34: case 35: case 36: case 37:
|
case 34: case 35: case 36: case 37:
|
||||||
fg_c = ansi_col[args[i] - 30];
|
fg_c = ansi_col[args[i] - 30];
|
||||||
|
Loading…
x
Reference in New Issue
Block a user