mirror of
https://github.com/love2d/love.git
synced 2026-08-15 07:41:11 +02:00
Updated the readme: Xcode 7 lets you build iOS apps for your device without a registered developer account.
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user