Use LÖVE as window title for the no game screen (apply Boolsheet's patch for issue #260)

This commit is contained in:
Bart van Strien
2011-07-15 20:22:36 +02:00
parent 94d16c095c
commit 4fa609a059
2 changed files with 21 additions and 25 deletions
+6 -6
View File
@@ -601,12 +601,12 @@ function love.nogame()
end
function love.conf(t)
t.title = "LOVE " .. love._version_string .. " (" .. love._version_codename .. ")"
t.modules.audio = false
t.modules.sound = false
t.modules.physics = false
t.modules.joystick = false
end
t.title = "L\195\150VE " .. love._version_string .. " (" .. love._version_codename .. ")"
t.modules.audio = false
t.modules.sound = false
t.modules.physics = false
t.modules.joystick = false
end
end
-----------------------------------------------------------