Changeset 93840 in vbox for trunk/src/VBox/Devices/Graphics/DevVGA.cpp
- Timestamp:
- Feb 18, 2022 2:10:50 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Graphics/DevVGA.cpp
r93827 r93840 1742 1742 full_update = true; 1743 1743 } 1744 1745 /* Underline position */ 1746 uline_pos = pThis->cr[0x14] & 0x1f; 1747 if (uline_pos != pThis->last_uline) { 1748 pThis->last_uline = uline_pos; 1749 full_update = true; 1750 } 1751 1752 blink_enabled = !!(pThis->ar[0x10] & 0x08); /* Attribute controller blink enable. */ 1753 if (blink_enabled != pThis->last_blink) { 1754 pThis->last_blink = blink_enabled; 1755 full_update = true; 1756 } 1757 1744 1758 full_update |= vgaR3UpdateBasicParams(pThis, pThisCC); 1745 1759 … … 1835 1849 cur_blink_flip = true; 1836 1850 } 1837 blink_enabled = !!(pThis->ar[0x10] & 0x08); /* Attribute controller blink enable. */1838 1839 /* Underline position */1840 uline_pos = pThis->cr[0x14] & 0x1f;1841 1851 1842 1852 for(cy = 0; cy < (height - dscan); cy = cy + (1 << dscan)) {
Note:
See TracChangeset
for help on using the changeset viewer.