diff --git a/compile.sh b/compile.sh index 3712b69..0c0a53f 100644 --- a/compile.sh +++ b/compile.sh @@ -4,4 +4,10 @@ set -xe gcc -g -ansi -Wall -Wextra -Wpedantic -Werror -Ofast -o xscii xscii.c +# clang -o xscii xscii.c +# tcc -o xscii xscii.c +# flang -o xscii xscii.f90 +# gfortran -o xscii xscii.f90 +# gnatmake -o xscii xscii.adb + exit diff --git a/xscii.c b/xscii.c index c279b19..e6a0eb9 100644 --- a/xscii.c +++ b/xscii.c @@ -93,7 +93,7 @@ static void echo_name (int character, int colour, int effect) { echo (name [character]); - out (" ", 40 - string_length (name [character])); + out (" ", 24 - string_length (name [character])); terminal_cancel (); }