aboutsummaryrefslogtreecommitdiff
path: root/main.lua
diff options
context:
space:
mode:
Diffstat (limited to 'main.lua')
-rw-r--r--main.lua8
1 files changed, 6 insertions, 2 deletions
diff --git a/main.lua b/main.lua
index e14a5f8..2f73f3d 100644
--- a/main.lua
+++ b/main.lua
@@ -5,8 +5,12 @@ lg.setLineStyle("rough")
function love.load()
main_init()
- -- start_speck_editor()
- start_game_scene()
+
+ if arg[2] == "speck" then
+ start_speck_editor()
+ else
+ start_game_scene()
+ end
end
function love.update(dt)