- Timestamp:
- Aug 9, 2010 9:48:11 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/xml/Settings.cpp
r31471 r31472 4234 4234 } 4235 4235 4236 // VirtualBox 3.2: Check for non default I/O settings 4237 if (m->sv < SettingsVersion_v1_10) 4238 { 4239 if ( (hardwareMachine.ioSettings.fIoCacheEnabled != true) 4240 || (hardwareMachine.ioSettings.ulIoCacheSize != 5) 4241 // and VRDP video channel 4242 || (hardwareMachine.vrdpSettings.fVideoChannel) 4243 // and page fusion 4244 || (hardwareMachine.fPageFusionEnabled) 4245 // and CPU hotplug, RTC timezone control, HID type and HPET 4246 || fRTCUseUTC 4247 || hardwareMachine.fCpuHotPlug 4248 || hardwareMachine.pointingHidType != PointingHidType_PS2Mouse 4249 || hardwareMachine.keyboardHidType != KeyboardHidType_PS2Keyboard 4250 || hardwareMachine.fHpetEnabled 4251 ) 4252 m->sv = SettingsVersion_v1_10; 4253 } 4254 4236 4255 // VirtualBox 3.2 adds NAT and boot priority to the NIC config in Main 4237 4256 if (m->sv < SettingsVersion_v1_10) … … 4285 4304 } 4286 4305 4287 if (m->sv < SettingsVersion_v1_10)4288 {4289 // VirtualBox 3.2: Check for non default I/O settings and bump the settings version.4290 if ( (hardwareMachine.ioSettings.fIoCacheEnabled != true)4291 || (hardwareMachine.ioSettings.ulIoCacheSize != 5)4292 // and VRDP video channel4293 || (hardwareMachine.vrdpSettings.fVideoChannel)4294 // and page fusion4295 || (hardwareMachine.fPageFusionEnabled)4296 // and CPU hotplug, RTC timezone control, HID type and HPET4297 || fRTCUseUTC4298 || hardwareMachine.fCpuHotPlug4299 || hardwareMachine.pointingHidType != PointingHidType_PS2Mouse4300 || hardwareMachine.keyboardHidType != KeyboardHidType_PS2Keyboard4301 || hardwareMachine.fHpetEnabled4302 )4303 m->sv = SettingsVersion_v1_10;4304 }4305 4306 4306 // all the following require settings version 1.9 4307 4307 if ( (m->sv < SettingsVersion_v1_9)
Note:
See TracChangeset
for help on using the changeset viewer.