|
@@ -0,0 +1,11 @@
|
|
1
|
+--- a/src/output.c
|
|
2
|
++++ b/src/output.c
|
|
3
|
+@@ -234,7 +234,7 @@ int print_header(int option) {
|
|
4
|
+ if (output_method==PLAIN_OUT && ansi_output) printf("\033[1;2H");
|
|
5
|
+ printf("bwm-ng v" VERSION " (delay %2.3fs); ",(float)delay/1000);
|
|
6
|
+ if (output_method==PLAIN_OUT) printf("press 'ctrl-c' to end this%s",(ansi_output ? "\033[2;2H" : "")); else printf("input: ");
|
|
7
|
+- printf(input2str());
|
|
8
|
++ printf("%s\n",input2str());
|
|
9
|
+ printf("%s\n",show_all_if2str());
|
|
10
|
+ if (output_method==PLAIN_OUT) {
|
|
11
|
+ if (ansi_output)
|