aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorne_mene <[email protected]>2026-03-31 11:43:44 +0200
committerne_mene <[email protected]>2026-03-31 11:43:44 +0200
commit7a66b465b46bd1507a9b8b746dc5182ee4055f93 (patch)
tree634940aedb588869c18725574c7f7b7389b36f22
parent791443b8e0d36c456aaf4f55b08782fdd7ac0a44 (diff)
speck editor program flag
-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)