Merged default into minor

--HG--
branch : minor
This commit is contained in:
Alex Szpakowski
2015-02-16 16:44:14 -04:00
4 changed files with 9 additions and 55 deletions
+2 -16
View File
@@ -476,22 +476,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