diff options
Diffstat (limited to 'src/screen/screen_table.c')
| -rw-r--r-- | src/screen/screen_table.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/screen/screen_table.c b/src/screen/screen_table.c index 5eea4d2..1a5ffcd 100644 --- a/src/screen/screen_table.c +++ b/src/screen/screen_table.c @@ -152,7 +152,7 @@ loadHighscoreFile() textFile = loadTextFile(path); if (textFile == NULL) { - fprintf(stderr, _("I am unable to load: \"%s\" !\n"), path); + fprintf(stderr, _("I am unable to load: \"%s\"!\n"), path); fprintf(stderr, _("Creating: \"%s\"\n"), path); textFile = newTextFile(path); } @@ -161,7 +161,7 @@ loadHighscoreFile() } if (textFile == NULL) { - fprintf(stderr, _("I was unable to create: \"%s\" !\n"), path); + fprintf(stderr, _("I was unable to create: \"%s\"!\n"), path); return; } |