From e411c45ded961f6502f284ed2a48f826ab73885e Mon Sep 17 00:00:00 2001 From: "Kartik K. Agaram" Date: Wed, 19 Jun 2024 21:53:57 -0700 Subject: [PATCH] fixup! rip out all unit tests --- run.lua | 8 -------- 1 file changed, 8 deletions(-) diff --git a/run.lua b/run.lua index c5835e6..685b13d 100644 --- a/run.lua +++ b/run.lua @@ -2,10 +2,7 @@ run = {} Editor_state = {} --- called both in tests and real run function run.initialize_globals() - -- tests currently mostly clear their own state - -- blinking cursor Cursor_time = 0 end @@ -47,11 +44,6 @@ function run.initialize(arg) end end -function print_and_log(s) - print(s) - log(3, s) -end - function run.load_settings() local font = love.graphics.newFont(Settings.font_height) -- set up desired window dimensions and make window resizable