Updated the readme: Xcode 7 lets you build iOS apps for your device without a registered developer account.

This commit is contained in:
Alex Szpakowski
2015-09-14 18:50:48 -03:00
parent 05ed70ed18
commit 99debab3a4
5 changed files with 14 additions and 14 deletions
+2 -2
View File
@@ -633,9 +633,9 @@ function love.errhand(msg)
return
elseif e == "keypressed" and a == "escape" then
return
elseif e == "mousereleased" then
elseif e == "touchreleased" then
local name = love.window.getTitle()
if #name == 0 then name = "Game" end
if #name == 0 or name == "Untitled" then name = "Game" end
local buttons = {"OK", "Cancel"}
local pressed = love.window.showMessageBox("Quit "..name.."?", "", buttons)
if pressed == 1 then