Changeset 41533 in vbox for trunk/src/VBox/Devices
- Timestamp:
- Jun 1, 2012 10:01:22 AM (13 years ago)
- Location:
- trunk/src/VBox/Devices/Graphics
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Graphics/DevVGA.cpp
r41406 r41533 4617 4617 4618 4618 STAM_COUNTER_INC(&pThis->StatUpdateDisp); 4619 if (pThis->fHasDirtyBits && pThis->GCPhysVRAM && pThis->GCPhysVRAM != NIL_RTGCPHYS 32)4619 if (pThis->fHasDirtyBits && pThis->GCPhysVRAM && pThis->GCPhysVRAM != NIL_RTGCPHYS) 4620 4620 { 4621 4621 PGMHandlerPhysicalReset(PDMDevHlpGetVM(pDevIns), pThis->GCPhysVRAM); … … 4647 4647 4648 4648 /* The dirty bits array has been just cleared, reset handlers as well. */ 4649 if (pThis->GCPhysVRAM && pThis->GCPhysVRAM != NIL_RTGCPHYS 32)4649 if (pThis->GCPhysVRAM && pThis->GCPhysVRAM != NIL_RTGCPHYS) 4650 4650 PGMHandlerPhysicalReset(PDMDevHlpGetVM(pDevIns), pThis->GCPhysVRAM); 4651 4651 if (pThis->fRemappedVGA) … … 5526 5526 || pThis->fR0Enabled) 5527 5527 && pThis->GCPhysVRAM 5528 && pThis->GCPhysVRAM != NIL_RTGCPHYS 32)5528 && pThis->GCPhysVRAM != NIL_RTGCPHYS) 5529 5529 { 5530 5530 int rc = PGMHandlerPhysicalReset(PDMDevHlpGetVM(pDevIns), pThis->GCPhysVRAM); -
trunk/src/VBox/Devices/Graphics/DevVGA.h
r40433 r41533 255 255 uint32_t u32Marker; 256 256 /** The physical address the VRAM was assigned. */ 257 RTGCPHYS 32GCPhysVRAM;257 RTGCPHYS GCPhysVRAM; 258 258 /** The R0 vram pointer... */ 259 259 R0PTRTYPE(uint8_t *) vram_ptrR0; … … 274 274 bool Padding1[2]; 275 275 276 #if HC_ARCH_BITS == 64276 #if HC_ARCH_BITS == 32 277 277 uint32_t Padding2; 278 278 #endif
Note:
See TracChangeset
for help on using the changeset viewer.