Changeset 32402 in vbox
- Timestamp:
- Sep 10, 2010 12:55:28 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/DisplayImpl.cpp
r32400 r32402 380 380 if (uVersion == sSSMDisplayVer2) 381 381 { 382 SSMR3GetU32(pSSM, &that->maFramebuffers[i].w); 383 SSMR3GetU32(pSSM, &that->maFramebuffers[i].h); 382 uint32_t w = (uint32_t)that->maFramebuffers[i].w; 383 uint32_t h = (uint32_t)that->maFramebuffers[i].h; 384 SSMR3GetU32(pSSM, &w); 385 SSMR3GetU32(pSSM, &h); 384 386 } 385 387 }
Note:
See TracChangeset
for help on using the changeset viewer.