Reword "we forgot to print an error message" error message

It now says "we forgot the error message" to be less technical.
This commit is contained in:
Dav999
2023-05-24 00:10:56 +02:00
committed by Misa Elizabeth Kai
parent a21a4c3c00
commit 8093874e84
14 changed files with 15 additions and 15 deletions

View File

@@ -1672,7 +1672,7 @@ static void menurender(void)
}
else
{
message = loc::gettext("Something went wrong, but we forgot to print an error message.");
message = loc::gettext("Something went wrong, but we forgot the error message.");
}
font::print(PR_2X | PR_CEN, -1, 45, loc::gettext("ERROR"), tr, tg, tb);
font::print_wrap(PR_CEN, -1, 65, message, tr, tg, tb);
@@ -1687,7 +1687,7 @@ static void menurender(void)
}
else
{
message = loc::gettext("Something went wrong, but we forgot to print an error message.");
message = loc::gettext("Something went wrong, but we forgot the error message.");
}
font::print(PR_2X | PR_CEN, -1, 45, loc::gettext("WARNING"), tr, tg, tb);
font::print_wrap(PR_CEN, -1, 65, message, tr, tg, tb);

View File

@@ -666,7 +666,7 @@ int main(int argc, char *argv[])
}
else
{
message = loc::gettext("Something went wrong, but we forgot to print an error message.");
message = loc::gettext("Something went wrong, but we forgot the error message.");
}
SDL_ShowSimpleMessageBox(SDL_MESSAGEBOX_ERROR, "Error", message, NULL);