- Timestamp:
- Dec 18, 2008 12:26:26 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/HWACCM.cpp
r15623 r15648 230 230 } 231 231 #else 232 /* We always allow 64 bits guests on 64 bits hosts. */ 233 pVM->hwaccm.s.fAllow64BitGuests = true; 232 /* On 64-bit hosts 64-bit guest support is enabled by default, but allow this to be overridden 233 * via VBoxInternal/HWVirtExt/64bitEnabled=0. (ConsoleImpl2.cpp doesn't set this to false for 64-bit.) */ 234 rc = CFGMR3QueryBoolDef(pHWVirtExt, "64bitEnabled", &pVM->hwaccm.s.fAllow64BitGuests, true); 235 AssertLogRelRCReturn(rc, rc); 234 236 #endif 235 237
Note:
See TracChangeset
for help on using the changeset viewer.