Fix text alignment in Z80.

This commit is contained in:
2021-05-25 21:50:45 +01:00
parent 4ce79d4396
commit 2ac584e5c2
4 changed files with 11 additions and 8 deletions

View File

@@ -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;

View File

@@ -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;

View File

@@ -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;

View File

@@ -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");