mirror of
https://github.com/love2d/love.git
synced 2026-08-15 07:41:11 +02:00
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:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user