- Timestamp:
- Nov 5, 2014 3:11:05 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Graphics/DevVGA.cpp
r53201 r53240 5479 5479 5480 5480 #ifdef VBOX_WITH_VMSVGA 5481 if ( rc == VINF_SUCCESS5482 && pThis->fVMSVGAEnabled)5481 if (pThis->fVMSVGAEnabled) 5482 { 5483 5483 rc = vmsvgaSaveExec(pDevIns, pSSM); 5484 AssertRCReturn(rc, rc); 5485 } 5484 5486 #endif 5485 5487 … … 5587 5589 #endif 5588 5590 #ifdef VBOX_WITH_VMSVGA 5589 rc = vmsvgaLoadDone(pDevIns); 5591 if (pThis->fVMSVGAEnabled) 5592 { 5593 rc = vmsvgaLoadDone(pDevIns); 5594 AssertRCReturn(rc, rc); 5595 } 5590 5596 #endif 5591 5597 return rc;
Note:
See TracChangeset
for help on using the changeset viewer.