- Fixed a bug with --pp=100.

This commit is contained in:
ccremers 2004-07-26 08:32:01 +00:00
parent 38a3fdb320
commit 0ffa7b81ec

View File

@ -771,7 +771,11 @@ lastActiveRun (const System sys)
else else
{ {
/* there was a previous action, start scan from there */ /* there was a previous action, start scan from there */
return sys->traceRun[sys->step - 1] + sys->porparam; #ifdef DEBUG
if (sys->porparam < 100)
return sys->traceRun[sys->step - 1] + sys->porparam;
#endif
return sys->traceRun[sys->step - 1];
} }
} }