mirror of
https://github.com/aaru-dps/fstester.git
synced 2025-12-16 19:24:39 +00:00
Fix text alignment in Z80.
This commit is contained in:
@@ -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;
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -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");
|
||||
|
||||
Reference in New Issue
Block a user