Changeset 3560 in vbox for trunk/src/VBox/Additions
- Timestamp:
- Jul 11, 2007 4:32:12 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/Graphics/Display/enable.c
r3553 r3560 12 12 * Copyright (c) 1992-1998 Microsoft Corporation 13 13 \**************************************************************************/ 14 #ifdef DEBUG 15 #define LOG_ENABLED 16 #endif 14 17 15 18 #include "driver.h" … … 130 133 for (i=0;i<lpRgnData->rdh.nCount;i++) 131 134 { 132 DISPDBG((0, "New visible rectangle (%d,%d) (%d,%d)\n", pRect ->left, pRect->bottom, pRect->right, pRect->top));133 pRTRect[i].xLeft = pRect ->left;134 pRTRect[i].yBottom = pRect ->bottom;135 pRTRect[i].xRight = pRect ->right;136 pRTRect[i].yTop = pRect ->top;135 DISPDBG((0, "New visible rectangle (%d,%d) (%d,%d)\n", pRect[i].left, pRect[i].bottom, pRect[i].right, pRect[i].top)); 136 pRTRect[i].xLeft = pRect[i].left; 137 pRTRect[i].yBottom = pRect[i].bottom; 138 pRTRect[i].xRight = pRect[i].right; 139 pRTRect[i].yTop = pRect[i].top; 137 140 } 138 141
Note:
See TracChangeset
for help on using the changeset viewer.