From 43420d2277c73f075669c55bdb4dd062d2f806d3 Mon Sep 17 00:00:00 2001 From: Guillaume Jacquemin Date: Sat, 9 Mar 2024 17:38:52 +0100 Subject: [PATCH] main: improve an error message. --- src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.cpp b/src/main.cpp index 3415679..b31da04 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -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; }