VirtualBox

Changeset 15322 in vbox for trunk


Ignore:
Timestamp:
Dec 11, 2008 5:40:47 PM (16 years ago)
Author:
vboxsync
Message:

REM/Main: When I said '/REM/64bitEnabled' I actually meant exactly that.

Location:
trunk/src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Main/ConsoleImpl2.cpp

    r15319 r15322  
    178178
    179179    /*
    180      * Set the root level values.
     180     * Set the root (and VMM) level values.
    181181     */
    182182    hrc = pMachine->COMGETTER(Name)(&str);                                          H();
     
    235235        if (fSupportsLongMode && fIs64BitGuest)
    236236        {
    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();
    238240        }
    239241    }
  • trunk/src/recompiler_new/VBoxREMWrapper.cpp

    r15320 r15322  
    19551955{
    19561956    bool f;
    1957     int rc = CFGMR3QueryBoolDef(CFGMR3GetRoot(pVM), "Rem64Enabled", &f, false);
     1957    int rc = CFGMR3QueryBoolDef(CFGMR3GetChild(CFGMR3GetRoot(pVM), "REM"), "64bitEnabled", &f, false);
    19581958    AssertRCReturn(rc, false);
    19591959    return f;
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette