Avoid non-ASCII UTF-8 in message box text - SDL's X11 backend for message boxes doesn't properly support it yet (https://bugzilla.libsdl.org/show_bug.cgi?id=1658).

This commit is contained in:
Alex Szpakowski
2015-03-17 11:54:52 -03:00
parent d982f02634
commit 4a8e5bd4db
3 changed files with 3 additions and 4 deletions
+1 -1
View File
@@ -428,7 +428,7 @@ function love.init()
if not love.isVersionCompatible(c.version) then
local major, minor, revision = c.version:match("^(%d+)%.(%d+)%.(%d+)$")
if (not major or not minor or not revision) or (major ~= love._version_major and minor ~= love._version_minor) then
local msg = "This game was made for a different version of LÖVE.\n"..
local msg = "This game was made for a different version of LOVE.\n"..
"It may not be not be compatible with the running version ("..love._version..")."
print(msg)