Changeset 57585 in vbox
- Timestamp:
- Aug 29, 2015 8:44:20 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Graphics/DevVGA.cpp
r57358 r57585 2429 2429 /* Do not update the destination buffer if it is not big enough. 2430 2430 * Can happen if the resize request was ignored by the driver. 2431 * Compare with 'disp_width', because it is what the framebuffer has been resized to. 2431 2432 */ 2432 if ( pDrv->cx != (uint32_t) width2433 if ( pDrv->cx != (uint32_t)disp_width 2433 2434 || pDrv->cy != (uint32_t)height) 2434 2435 { 2435 2436 LogRel(("Framebuffer mismatch: vga %dx%d, drv %dx%d!!!\n", 2436 width, height,2437 disp_width, height, 2437 2438 pDrv->cx, pDrv->cy)); 2438 2439 return VINF_SUCCESS;
Note:
See TracChangeset
for help on using the changeset viewer.