Changeset 45675 in vbox
- Timestamp:
- Apr 23, 2013 9:13:50 AM (12 years ago)
- Location:
- trunk/src/VBox/Main
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/ConsoleImpl.h
r45674 r45675 528 528 BusAssignmentManager *pBusMgr, 529 529 const ComPtr<IMachine> &pMachine, 530 const ComPtr<IBIOSSettings> &biosSettings); 530 const ComPtr<IBIOSSettings> &biosSettings, 531 bool fHMEnabled); 531 532 int configMediumAttachment(PCFGMNODE pCtlInst, 532 533 const char *pcszDevice, -
trunk/src/VBox/Main/src-client/ConsoleImpl2.cpp
r45674 r45675 1329 1329 break; 1330 1330 case GraphicsControllerType_VBoxVGA: 1331 rc = configGraphicsController(pDevices, "vga", pBusMgr, pMachine, biosSettings );1331 rc = configGraphicsController(pDevices, "vga", pBusMgr, pMachine, biosSettings, fHMEnabled); 1332 1332 if (FAILED(rc)) 1333 1333 return rc; … … 3038 3038 BusAssignmentManager *pBusMgr, 3039 3039 const ComPtr<IMachine> &pMachine, 3040 const ComPtr<IBIOSSettings> &biosSettings) 3040 const ComPtr<IBIOSSettings> &biosSettings, 3041 bool fHMEnabled) 3041 3042 { 3042 3043 // InsertConfig* throws … … 3060 3061 hrc = pMachine->COMGETTER(MonitorCount)(&cMonitorCount); H(); 3061 3062 InsertConfigInteger(pCfg, "MonitorCount", cMonitorCount); 3062 3063 #ifdef VBOX_WITH_2X_4GB_ADDR_SPACE 3063 3064 InsertConfigInteger(pCfg, "R0Enabled", fHMEnabled); 3064 #endif 3065 #else 3066 NOREF(fHMEnabled); 3067 #endif 3065 3068 3066 3069 /* Custom VESA mode list */
Note:
See TracChangeset
for help on using the changeset viewer.