From 3c24de0f1ce57aeae6153edec829c9d9436c9d9f Mon Sep 17 00:00:00 2001 From: Paul Liverman III Date: Wed, 4 May 2016 13:57:30 -0700 Subject: [PATCH] added open command --- builds/build.number | 2 +- src/main.lua | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/builds/build.number b/builds/build.number index 276f218..0ec13b9 100644 --- a/builds/build.number +++ b/builds/build.number @@ -1 +1 @@ -build=1 +build=2 diff --git a/src/main.lua b/src/main.lua index d13a778..60b4529 100644 --- a/src/main.lua +++ b/src/main.lua @@ -142,4 +142,8 @@ function love.keypressed(key) if key == "c" then lines = {} end + + if key == "o" then + love.system.openURL(love.filesystem.getSaveDirectory()) + end end