Changeset 30605 in vbox
- Timestamp:
- Jul 5, 2010 12:18:44 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 63331
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Graphics/DevVGA.cpp
r30524 r30605 128 128 #ifdef IN_RING3 129 129 #include <iprt/alloc.h> 130 #include <iprt/ctype.h> 130 131 #endif /* IN_RING3 */ 131 132 #include <iprt/assert.h> … … 4628 4629 for (col = 0; col < num_cols; ++col) 4629 4630 { 4630 pHlp->pfnPrintf(pHlp, "%c", *src); 4631 if (RT_C_IS_PRINT(*src)) 4632 pHlp->pfnPrintf(pHlp, "%c", *src); 4633 else 4634 pHlp->pfnPrintf(pHlp, "."); 4631 4635 src += 8; /* chars are spaced 8 bytes apart */ 4632 4636 }
Note:
See TracChangeset
for help on using the changeset viewer.