- Timestamp:
- Aug 11, 2008 12:26:55 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Graphics/DevVGA.cpp
r11285 r11335 5135 5135 { 5136 5136 static bool s_fExpandDone = false; 5137 bool f;5138 5137 int rc; 5139 5138 unsigned i; … … 5203 5202 "VRamSize is too small, %#x, max %#x", pThis->vram_size, VGA_VRAM_MIN); 5204 5203 5205 rc = CFGMR3QueryBoolDef(pCfgHandle, "GCEnabled", & f, true);5204 rc = CFGMR3QueryBoolDef(pCfgHandle, "GCEnabled", &pThis->fGCEnabled, true); 5206 5205 AssertLogRelRCReturn(rc, rc); 5207 Log(("VGA: fGCEnabled=%d\n", pThis->fGCEnabled)); 5208 5209 rc = CFGMR3QueryBoolDef(pCfgHandle, "R0Enabled", &f, true); 5206 5207 rc = CFGMR3QueryBoolDef(pCfgHandle, "R0Enabled", &pThis->fR0Enabled, true); 5210 5208 AssertLogRelRCReturn(rc, rc); 5211 5209 Log(("VGA: VRamSize=%#x fGCenabled=%RTbool fR0Enabled=%RTbool\n", pThis->vram_size, pThis->fGCEnabled, pThis->fR0Enabled));
Note:
See TracChangeset
for help on using the changeset viewer.