imported changes from love-0.9.2

This commit is contained in:
fysx
2015-02-16 00:37:14 +01:00
parent 3cfecd46d9
commit d6f1d8bd70
65 changed files with 7033 additions and 7858 deletions
+2 -16
View File
@@ -483,22 +483,8 @@ function love.init()
print(msg)
local can_display = love.window and love.window.isCreated()
can_display = can_display and love.graphics and love.graphics.isCreated()
if can_display and love.timer and love.event then
love.graphics.setBackgroundColor(89, 157, 220)
love.graphics.origin()
local start = love.timer.getTime()
while love.timer.getTime() < start + 4 do
love.event.pump()
love.graphics.clear()
love.graphics.print(msg, 70, 70)
love.graphics.present()
love.timer.sleep(1/20)
end
love.graphics.setBackgroundColor(0, 0, 0)
if love.window then
love.window.showMessageBox("Compatibility Warning", msg, "warning")
end
end
end