- Timestamp:
- Sep 20, 2007 8:30:31 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/DisplayImpl.cpp
r4499 r4912 489 489 checkCoordBounds (&x, &y, &w, &h, mpDrv->Connector.cx, mpDrv->Connector.cy); 490 490 491 pFramebuffer->NotifyUpdate(x, y, w, h, &finished); 491 if (w == 0 || h == 0) 492 { 493 /* Nothing to be updated. */ 494 finished = TRUE; 495 } 496 else 497 { 498 pFramebuffer->NotifyUpdate(x, y, w, h, &finished); 499 } 492 500 493 501 if (!finished)
Note:
See TracChangeset
for help on using the changeset viewer.