X-Git-Url: https://git.artsoft.org/?a=blobdiff_plain;f=src%2Ftape.c;h=709e1520ac38a26c5a1f5b33233606dbdc4bb492;hb=aed278e72703016e2729b55d8b629b7e1b31469e;hp=e9f3cbbcde34908bfcc3661ba0be3ae6eb32c22e;hpb=3fd727f8ab7628eaab0be7de31658d7d468d6c8d;p=rocksndiamonds.git diff --git a/src/tape.c b/src/tape.c index e9f3cbbc..709e1520 100644 --- a/src/tape.c +++ b/src/tape.c @@ -766,11 +766,14 @@ void AutoPlayTape() printf("\n"); printf_line('=', 79); - printf("Summary\n"); - printf_line('-', 79); printf("Number of levels played: %d\n", levels_played); printf("Number of levels solved: %d (%d%%)\n", levels_solved, levels_solved * 100 / levels_played); + printf_line('-', 79); + printf("Summary (for automatic parsing by scripts):\n"); + printf("LEVELDIR '%s', SOLVED %d/%d (%d%%)\n", + autoplay_leveldir->identifier, levels_solved, levels_played, + levels_solved * 100 / levels_played); printf_line('=', 79); CloseAllAndExit(0);