j
k
j a
j l
"Evan Stade" estade@gmail.com writes:
for( i = dc->path.numEntriesUsed-1; i >= 0; i-- ){ if(dc->path.pFlags[i] == PT_MOVETO){ lastmove = dc->path.pPoints[i]; break; } } if(i < 0){ lastmove.x = 0; lastmove.y = 0; }
for( i = dc->path.numEntriesUsed-1; i >= 0; i-- ){
if(dc->path.pFlags[i] == PT_MOVETO){
lastmove = dc->path.pPoints[i];
break;
}
if(i < 0){
lastmove.x = 0;
lastmove.y = 0;
This can't work, i is unsigned.
Back to the thread
Back to the list