Changeset 6684 for trunk/src/gdi32/line.cpp
- Timestamp:
- Sep 9, 2001, 2:24:13 PM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/gdi32/line.cpp
r5044 r6684 1 /* $Id: line.cpp,v 1. 9 2001-02-01 18:01:52sandervl Exp $ */1 /* $Id: line.cpp,v 1.10 2001-09-09 12:24:13 sandervl Exp $ */ 2 2 /* 3 3 * Line API's … … 81 81 POINTLOS2 newPoint = {X,Y}; 82 82 83 if (lpPoint) 84 { 85 POINTLOS2 lastPoint; 86 87 OSLibGpiQueryCurrentPosition(pHps,&lastPoint); 88 lpPoint->x = lastPoint.x; 89 lpPoint->y = lastPoint.y; 90 } 91 83 92 #ifndef INVERT 84 93 if(pHps->yInvert > 0) { … … 89 98 } 90 99 #endif 91 92 if (lpPoint)93 {94 POINTLOS2 lastPoint;95 96 OSLibGpiQueryCurrentPosition(pHps,&lastPoint);97 lpPoint->x = lastPoint.x;98 lpPoint->y = lastPoint.y;99 }100 100 101 101 if (OSLibGpiMove(pHps,&newPoint))
Note:
See TracChangeset
for help on using the changeset viewer.