Changeset 7759 in vbox for trunk/src/VBox/Frontends/VBoxBFE
- Timestamp:
- Apr 5, 2008 11:36:02 AM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 29306
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxBFE/VBoxBFE.cpp
r7418 r7759 1433 1433 rc = CFGMR3InsertBytes(pCfg, "UUID", &Uuid, sizeof(Uuid)); UPDATE_RC(); 1434 1434 1435 /* Default: no bios logo. */1436 rc = CFGMR3InsertInteger(pCfg, "FadeIn", 1); UPDATE_RC();1437 rc = CFGMR3InsertInteger(pCfg, "FadeOut", 0); UPDATE_RC();1438 rc = CFGMR3InsertInteger(pCfg, "LogoTime", 0); UPDATE_RC();1439 rc = CFGMR3InsertString(pCfg, "LogoFile", ""); UPDATE_RC();1440 1441 /* Boot menu */1442 rc = CFGMR3InsertInteger(pCfg, "ShowBootMenu", g_iBootMenu); UPDATE_RC();1443 1444 1435 /* 1445 1436 * ACPI … … 1617 1608 rc = CFGMR3InsertNode(pInst, "Config", &pCfg); UPDATE_RC(); 1618 1609 rc = CFGMR3InsertInteger(pCfg, "VRamSize", g_u32VRamSize); UPDATE_RC(); 1610 1611 /* Default: no bios logo. */ 1612 rc = CFGMR3InsertInteger(pCfg, "FadeIn", 1); UPDATE_RC(); 1613 rc = CFGMR3InsertInteger(pCfg, "FadeOut", 0); UPDATE_RC(); 1614 rc = CFGMR3InsertInteger(pCfg, "LogoTime", 0); UPDATE_RC(); 1615 rc = CFGMR3InsertString(pCfg, "LogoFile", ""); UPDATE_RC(); 1616 1617 /* Boot menu */ 1618 rc = CFGMR3InsertInteger(pCfg, "ShowBootMenu", g_iBootMenu); UPDATE_RC(); 1619 1619 1620 1620 #ifdef RT_OS_L4
Note:
See TracChangeset
for help on using the changeset viewer.