From: Daniel J S. <dan...@ie...> - 2004-07-07 15:57:49
|
Hans-Bernhard Broeker wrote: > > Any assistance in solving this puzzle would be glady appreciated. I think I may have found it... or one problem anyway. I'm doing a "diff -w" and this one is in question: < while((nYinc || nXinc) && !PtInRect(&rect, pt) < && (GetAsyncKeyState(VK_LBUTTON) < 0)); < } /* moved inside viewport */ < break; --- > while( (nYinc || nXinc) && !PtInRect(&rect, pt) && > (GetAsyncKeyState(VK_LBUTTON) < 0) ); 1425a1402,1403 > } > break; As with some other case statements, the "break" was moved inside the curley bracket thinking that it was like the others. But in this case the {} is not for defining new variables, it is for an if(){} statement, I believe. Does that seem like it could be the problem? Dan |