How can I? Basically the part I changed was this:
Code:
if (y < x + 26 && y < -x + 346)
{
if (x < 100)
{
point.x = 100;
point.y = 126;
}
else if (x > 220)
{
point.x = 220;
point.y = 126;
}
else
{
point.y = 126;
}
touchPoint = point;
currentLine = 1;
NSLog(@"Current line: %i", currentLine);
return;
}
I don't know about you, but it seems pretty innocent to me. I've placed breakpoints all over, but nothing happens.
As I said, it was working fine until I just hit build and go, foolishly expecting my app to improve. Could you define "segmentation error" so I can see if anything rings a bell?