Changeset 20219 in vbox
- Timestamp:
- Jun 3, 2009 8:35:18 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/ApplianceImpl.cpp
r20212 r20219 1444 1444 ULONG cpuCountVBox = vsysThis.cCPUs; 1445 1445 /* Check for the constrains */ 1446 if (cpuCountVBox > 1) //SchemaDefs::MaxCPUCount)1446 if (cpuCountVBox > SchemaDefs::MaxCPUCount) 1447 1447 { 1448 1448 addWarning(tr("The virtual system \"%s\" claims support for %u CPU's, but VirtualBox has support for max %u CPU's only."), 1449 vsysThis.strName.c_str(), cpuCountVBox, 1); //SchemaDefs::MaxCPUCount);1450 cpuCountVBox = 1; //SchemaDefs::MaxCPUCount;1449 vsysThis.strName.c_str(), cpuCountVBox, SchemaDefs::MaxCPUCount); 1450 cpuCountVBox = SchemaDefs::MaxCPUCount; 1451 1451 } 1452 1452 if (vsysThis.cCPUs == 0)
Note:
See TracChangeset
for help on using the changeset viewer.