Changeset 68137 in vbox
- Timestamp:
- Jul 27, 2017 10:54:43 AM (8 years ago)
- svn:sync-xref-src-repo-rev:
- 117223
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/DevHDA.cpp
r68132 r68137 3616 3616 /* 3617 3617 * Load controller-specifc internals. 3618 * Don't annoy other team mates (forgot this for state v7). 3618 3619 */ 3619 if (SSMR3HandleRevision(pSSM) >= 116273) /* Don't annoy other team mates (forgot this for state v7). */ 3620 if ( SSMR3HandleRevision(pSSM) >= 116273 3621 || SSMR3HandleVersion(pSSM) >= VBOX_FULL_VERSION_MAKE(5, 2, 0)) 3620 3622 { 3621 3623 rc = SSMR3GetU64(pSSM, &pThis->u64WalClk); … … 3681 3683 /* 3682 3684 * Load period state. 3685 * Don't annoy other team mates (forgot this for state v7). 3683 3686 */ 3684 3687 hdaStreamPeriodInit(&pStrm->State.Period, 3685 3688 pStrm->u8SD, pStrm->u16LVI, pStrm->u32CBL, &pStrm->State.strmCfg); 3686 3689 3687 if (SSMR3HandleRevision(pSSM) >= 116273) /* Don't annoy other team mates (forgot this for state v7). */ 3690 if ( SSMR3HandleRevision(pSSM) >= 116273 3691 || SSMR3HandleVersion(pSSM) >= VBOX_FULL_VERSION_MAKE(5, 2, 0)) 3688 3692 { 3689 3693 rc = SSMR3GetStructEx(pSSM, &pStrm->State.Period, sizeof(HDASTREAMPERIOD),
Note:
See TracChangeset
for help on using the changeset viewer.