Changeset 12975 in vbox for trunk/src/VBox/Devices/Graphics
- Timestamp:
- Oct 3, 2008 10:22:37 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Graphics/DevVGA.cpp
r12969 r12975 5224 5224 5225 5225 /* The LBF access handler - error handling is better here than in the map function. */ 5226 rc = PDMR3 GetSymbolGCLazy(pVM, pDevIns->pDevReg->szGCMod, "vgaGCLFBAccessHandler", &pThis->RCPtrLFBHandler);5226 rc = PDMR3LdrGetSymbolRCLazy(pVM, pDevIns->pDevReg->szGCMod, "vgaGCLFBAccessHandler", &pThis->RCPtrLFBHandler); 5227 5227 if (RT_FAILURE(rc)) 5228 5228 { 5229 AssertReleaseMsgFailed(("PDMR3 GetSymbolGC(, %s, \"vgaGCLFBAccessHandler\",) -> %Rrc\n", pDevIns->pDevReg->szGCMod, rc));5229 AssertReleaseMsgFailed(("PDMR3LdrGetSymbolRC(, %s, \"vgaGCLFBAccessHandler\",) -> %Rrc\n", pDevIns->pDevReg->szGCMod, rc)); 5230 5230 return rc; 5231 5231 }
Note:
See TracChangeset
for help on using the changeset viewer.