Skip to content
Snippets Groups Projects
Commit 2c25107c authored by BlockMen's avatar BlockMen
Browse files

Fix typo

parent bc0318d2
No related branches found
No related tags found
No related merge requests found
......@@ -160,7 +160,7 @@ void init_gettext(const char *path, const std::string &configured_language,
// Allow calling without an extension
std::string app_name = argv[0];
if (app_name.compare(appname.size() - 4, 4, ".exe") != 0)
if (app_name.compare(app_name.size() - 4, 4, ".exe") != 0)
app_name += ".exe";
STARTUPINFO startup_info = {0};
......@@ -246,4 +246,3 @@ void init_gettext(const char *path, const std::string &configured_language,
infostream << "Message locale is now set to: "
<< setlocale(LC_ALL, 0) << std::endl;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment