Changeset 297 for trunk/src/kernel32/conbuffer.cpp
- Timestamp:
- Jul 12, 1999, 7:45:51 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kernel32/conbuffer.cpp
r149 r297 1 /* $Id: conbuffer.cpp,v 1. 3 1999-06-21 18:53:50 phaller Exp $ */1 /* $Id: conbuffer.cpp,v 1.4 1999-07-12 17:45:50 phaller Exp $ */ 2 2 3 3 /* … … 1809 1809 case 0: 1810 1810 for (iY = 0; 1811 iY < =srctDest.Bottom - srctDest.Top;1811 iY < srctDest.Bottom - srctDest.Top; 1812 1812 iY++) 1813 1813 { … … 1834 1834 case 1: 1835 1835 for (iY = 0; 1836 iY < =srctDest.Bottom - srctDest.Top;1836 iY < srctDest.Bottom - srctDest.Top; 1837 1837 iY++) 1838 1838 { … … 1858 1858 ***************/ 1859 1859 case 2: 1860 for (iY = srctDest.Bottom - srctDest.Top ;1860 for (iY = srctDest.Bottom - srctDest.Top - 1; 1861 1861 iY >= 0; 1862 1862 iY--) … … 1883 1883 ****************/ 1884 1884 case 3: 1885 for (iY = srctDest.Bottom - srctDest.Top ;1885 for (iY = srctDest.Bottom - srctDest.Top - 1; 1886 1886 iY >= 0; 1887 1887 iY--)
Note:
See TracChangeset
for help on using the changeset viewer.