main: improve an error message.

This commit is contained in:
Guillaume Jacquemin 2024-03-09 17:38:52 +01:00
parent ba3769404d
commit 43420d2277
Signed by: williamjcm
SSH Key Fingerprint: SHA256:AYLOg+iTV0ElElnlu4vqM4edFazVdRiuQB0Y5LoKc4A
1 changed files with 1 additions and 1 deletions

View File

@ -48,7 +48,7 @@ int main(int argc, char** argv) {
if(!locale.hasSuffix(".utf8") && !locale.hasSuffix(".65001")) {
SDL_ShowSimpleMessageBox(SDL_MESSAGEBOX_ERROR, "Error",
"Your system doesn't support UTF-8.", nullptr);
"Your system doesn't support the UTF-8 codepage.", nullptr);
return EXIT_FAILURE;
}