mirror of
https://github.com/gbdev/rgbds.git
synced 2026-05-09 03:19:35 +00:00
Remove exclamation marks and periods from error messages (#1874)
This commit is contained in:
+2
-2
@@ -90,7 +90,7 @@ static void incrementErrors() {
|
||||
style_Set(stderr, STYLE_RED, true);
|
||||
fprintf(
|
||||
stderr,
|
||||
"Assembly aborted after the maximum of %" PRIu64 " error%s!",
|
||||
"Assembly aborted after the maximum of %" PRIu64 " error%s",
|
||||
warnings.nbErrors,
|
||||
warnings.nbErrors == 1 ? "" : "s"
|
||||
);
|
||||
@@ -136,7 +136,7 @@ void requireZeroErrors() {
|
||||
style_Set(stderr, STYLE_RED, true);
|
||||
fprintf(
|
||||
stderr,
|
||||
"Assembly aborted with %" PRIu64 " error%s!\n",
|
||||
"Assembly aborted with %" PRIu64 " error%s\n",
|
||||
warnings.nbErrors,
|
||||
warnings.nbErrors == 1 ? "" : "s"
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user