Changeset 15647 in vbox for trunk/src/VBox/VMM/PGM.cpp
- Timestamp:
- Dec 18, 2008 12:12:46 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/PGM.cpp
r15491 r15647 2472 2472 return VERR_SSM_DATA_UNIT_FORMAT_CHANGED; 2473 2473 } 2474 2475 /* This is a horribly ugly hack for an 2.0 -> 2.1 incompatibility2476 in the VMMDev PCI regions. VMMDev Heap was added in 2.1 and we2477 simply skip it here if it's not in the saved state. */2478 if ( ( GCPhys != pRam->GCPhys2479 || GCPhysLast != pRam->GCPhysLast2480 || cb != pRam->cb2481 || fHaveBits != !!pRam->pvR3)2482 && !strcmp(pRam->pszDesc, "VMMDev Heap")2483 && pRam->pNextR3)2484 pRam = pRam->pNextR3; /* don't increment i. */2485 2474 2486 2475 /* Match it up with the current range. */
Note:
See TracChangeset
for help on using the changeset viewer.