diff --git a/setter/src/z80/dirdepth.c b/setter/src/z80/dirdepth.c index 71db29b..aa8c089 100644 --- a/setter/src/z80/dirdepth.c +++ b/setter/src/z80/dirdepth.c @@ -38,8 +38,9 @@ void DirectoryDepth(const char* path) char filename[9]; long pos = 0; - printf("Please insert the \"DEPTH\" disk.\n"); - printf("Press Y to continue, any other key exits.\n"); + printf("\nPlease insert the \"DEPTH\" disk.\n"); + printf("Press Y to continue,\n"); + printf("any other key exits.\n"); ret = getchar(); if(ret != 'Y' && ret != 'y') return; diff --git a/setter/src/z80/filename.c b/setter/src/z80/filename.c index 920845d..8e8db76 100644 --- a/setter/src/z80/filename.c +++ b/setter/src/z80/filename.c @@ -35,8 +35,9 @@ void Filenames(const char* path) int rc, wRc, cRc; int pos; - printf("Please insert the \"FILENAME\" disk.\n"); - printf("Press Y to continue, any other key exits.\n"); + printf("\nPlease insert the \"FILENAME\" disk.\n"); + printf("Press Y to continue,\n"); + printf("any other key exits.\n"); ret = getchar(); if(ret != 'Y' && ret != 'y') return; diff --git a/setter/src/z80/files.c b/setter/src/z80/files.c index 37fe41d..6302b4b 100644 --- a/setter/src/z80/files.c +++ b/setter/src/z80/files.c @@ -34,8 +34,9 @@ void MillionFiles(const char* path) FILE* h; int ret; - printf("Please insert the \"FILES\" disk.\n"); - printf("Press Y to continue, any other key exits.\n"); + printf("\nPlease insert the \"FILES\" disk.\n"); + printf("Press Y to continue,\n"); + printf("any other key exits.\n"); ret = getchar(); if(ret != 'Y' && ret != 'y') return; diff --git a/setter/src/z80/main.c b/setter/src/z80/main.c index d4533e2..845f4db 100644 --- a/setter/src/z80/main.c +++ b/setter/src/z80/main.c @@ -40,7 +40,7 @@ int main(int argc, char** argv) { int c; - printf("Aaru Filesystem Tester (Setter) %s\n", AARU_FSTESTER_VERSION); + printf("Aaru Filesystem Tester (Setter)\n%s\n", AARU_FSTESTER_VERSION); printf("%s\n", AARU_COPYRIGHT); printf("Running in %s (%s)\n", OS_NAME, OS_ARCH); printf("\n"); @@ -48,7 +48,7 @@ int main(int argc, char** argv) // Limit output to 40 columns printf("This software needs %d disks labeled\n", NO_DISKS); printf("\"FILES\", \"FILENAME\"%s\n", DISK_NAMES_TAIL); - printf("to be inserted into the drive where"); + printf("to be inserted into the drive where\n"); printf("this disk is now.\n"); printf("Press the Y key to continue\n"); printf("any other key exists.\n");