Ignore:
Timestamp:
Jul 12, 1999, 7:45:51 PM (26 years ago)
Author:
phaller
Message:

Fix: Console buffer fixes.

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 $ */
    22
    33/*
     
    18091809    case 0:
    18101810      for (iY = 0;
    1811            iY <= srctDest.Bottom - srctDest.Top;
     1811           iY < srctDest.Bottom - srctDest.Top;
    18121812           iY++)
    18131813      {
     
    18341834    case 1:
    18351835      for (iY = 0;
    1836            iY <= srctDest.Bottom - srctDest.Top;
     1836           iY < srctDest.Bottom - srctDest.Top;
    18371837           iY++)
    18381838      {
     
    18581858     ***************/
    18591859    case 2:
    1860       for (iY = srctDest.Bottom - srctDest.Top;
     1860      for (iY = srctDest.Bottom - srctDest.Top - 1;
    18611861           iY >= 0;
    18621862           iY--)
     
    18831883     ****************/
    18841884    case 3:
    1885       for (iY = srctDest.Bottom - srctDest.Top;
     1885      for (iY = srctDest.Bottom - srctDest.Top - 1;
    18861886           iY >= 0;
    18871887           iY--)
Note: See TracChangeset for help on using the changeset viewer.