- Fixed bug in attack output.

- Re-enabled the noreport switch.
This commit is contained in:
ccremers
2004-07-13 09:36:30 +00:00
parent 981f0a92b4
commit 410a35f4f4
4 changed files with 5 additions and 6 deletions

View File

@@ -481,6 +481,9 @@ attackDisplayAscii (System sys)
void
attackDisplay (System sys)
{
if (!sys->report)
return;
if (sys->latex)
{
attackDisplayLatex (sys);
@@ -575,7 +578,7 @@ void graphPath (const System sys, const char* params)
i = 0;
while (i < sys->step)
{
printf ("\tn%i [%s]\n", sys->traceNode[i], params);
printf ("\tn%li [%s];\n", sys->traceNode[i], params);
i++;
}
}