- Timestamp:
- Dec 11, 2008 5:40:47 PM (16 years ago)
- Location:
- trunk/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/ConsoleImpl2.cpp
r15319 r15322 178 178 179 179 /* 180 * Set the root level values.180 * Set the root (and VMM) level values. 181 181 */ 182 182 hrc = pMachine->COMGETTER(Name)(&str); H(); … … 235 235 if (fSupportsLongMode && fIs64BitGuest) 236 236 { 237 rc = CFGMR3InsertInteger(pRoot, "Rem64Enabled", 1); RC_CHECK(); 237 PCFGMNODE pREM; 238 rc = CFGMR3InsertNode(pRoot, "REM", &pREM); RC_CHECK(); 239 rc = CFGMR3InsertInteger(pREM, "64bitEnabled", 1); RC_CHECK(); 238 240 } 239 241 } -
trunk/src/recompiler_new/VBoxREMWrapper.cpp
r15320 r15322 1955 1955 { 1956 1956 bool f; 1957 int rc = CFGMR3QueryBoolDef(CFGMR3Get Root(pVM), "Rem64Enabled", &f, false);1957 int rc = CFGMR3QueryBoolDef(CFGMR3GetChild(CFGMR3GetRoot(pVM), "REM"), "64bitEnabled", &f, false); 1958 1958 AssertRCReturn(rc, false); 1959 1959 return f;
Note:
See TracChangeset
for help on using the changeset viewer.