Ignore:
Timestamp:
Jan 22, 2001, 8:28:54 AM (25 years ago)
Author:
umoeller
Message:

Misc. updates.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/helpers/gpih.c

    r25 r29  
    361361    POINTL ptl1;
    362362
    363     for (us = 0; us < usWidth; us++)
     363    for (us = 0;
     364         us < usWidth;
     365         us++)
    364366    {
    365367        GpiSetColor(hps, lColorLeft);
     368        // draw left line
    366369        ptl1.x = rcl2.xLeft;
    367370        ptl1.y = rcl2.yBottom;
     
    369372        ptl1.y = rcl2.yTop;     // V0.9.7 (2000-12-20) [umoeller]
    370373        GpiLine(hps, &ptl1);
     374        // go right -> draw top
    371375        ptl1.x = rcl2.xRight;   // V0.9.7 (2000-12-20) [umoeller]
    372376        GpiLine(hps, &ptl1);
     377        // go down -> draw right
    373378        GpiSetColor(hps, lColorRight);
    374379        ptl1.y = rcl2.yBottom;
    375380        GpiLine(hps, &ptl1);
     381        // go left -> draw bottom
    376382        ptl1.x = rcl2.xLeft;
    377383        GpiLine(hps, &ptl1);
Note: See TracChangeset for help on using the changeset viewer.