- Timestamp:
- Aug 26, 2009 12:49:54 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 51482
- Location:
- trunk/src/VBox/Devices/Graphics
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Graphics/DevVGA.cpp
r22444 r22468 55 55 /** The minimum amount of VRAM. */ 56 56 #define VGA_VRAM_MIN (_1M) 57 58 #ifdef VBOX_WITH_HGSMI59 # define VGA_SAVEDSTATE_VERSION 360 #else61 # define VGA_SAVEDSTATE_VERSION 262 #endif63 57 64 58 /** The size of the VGA GC mapping. … … 5442 5436 * @param u32Version The data unit version number. 5443 5437 */ 5444 static DECLCALLBACK(int) vgaR3 xec(PPDMDEVINS pDevIns, PSSMHANDLE pSSMHandle, uint32_t u32Version)5438 static DECLCALLBACK(int) vgaR3LoadExec(PPDMDEVINS pDevIns, PSSMHANDLE pSSMHandle, uint32_t u32Version) 5445 5439 { 5446 5440 if (vga_load(pSSMHandle, PDMINS_2_DATA(pDevIns, PVGASTATE), u32Version)) … … 6125 6119 NULL, vgaR3SaveExec, NULL, 6126 6120 #endif 6127 NULL, vgaR3 xec, NULL);6121 NULL, vgaR3LoadExec, NULL); 6128 6122 if (RT_FAILURE(rc)) 6129 6123 return rc; -
trunk/src/VBox/Devices/Graphics/DevVGA.h
r22444 r22468 51 51 #define VGA_PORT_OFF_HGSMI_GUEST 4 52 52 #endif /* VBOX_WITH_HGSMI */ 53 54 #ifdef VBOX_WITH_HGSMI 55 # define VGA_SAVEDSTATE_VERSION 3 56 #else 57 # define VGA_SAVEDSTATE_VERSION 2 58 #endif 53 59 54 60 #define MSR_COLOR_EMULATION 0x01
Note:
See TracChangeset
for help on using the changeset viewer.