Changeset 51419 in vbox
- Timestamp:
- May 27, 2014 8:56:28 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/ConsoleImpl2.cpp
r51292 r51419 1685 1685 1686 1686 /* UGA mode settings */ 1687 uint32_t u32UgaHori sontal = 0;1687 uint32_t u32UgaHorizontal = 0; 1688 1688 GetExtraDataBoth(virtualBox, pMachine, "VBoxInternal2/EfiUgaHorizontalResolution", &strTmp); 1689 1689 if (!strTmp.isEmpty()) 1690 u32UgaHori sontal = strTmp.toUInt32();1690 u32UgaHorizontal = strTmp.toUInt32(); 1691 1691 1692 1692 uint32_t u32UgaVertical = 0; … … 1712 1712 InsertConfigInteger(pCfg, "64BitEntry", f64BitEntry); /* boolean */ 1713 1713 InsertConfigInteger(pCfg, "GopMode", u32GopMode); 1714 InsertConfigInteger(pCfg, "UgaHorizontalResolution", u32UgaHori sontal);1714 InsertConfigInteger(pCfg, "UgaHorizontalResolution", u32UgaHorizontal); 1715 1715 InsertConfigInteger(pCfg, "UgaVerticalResolution", u32UgaVertical); 1716 1716
Note:
See TracChangeset
for help on using the changeset viewer.