about summary refs log tree commit diff stats
path: root/app.lua
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2022-05-23 15:38:42 -0700
committerKartik K. Agaram <vc@akkartik.com>2022-05-23 15:38:42 -0700
commit6b10c94dd5143ad50ac958a5b5c60300b3755754 (patch)
tree6187c2bd427a9f2cdb16e9b5b0e36506b243ab72 /app.lua
parent8b5fdffd7dc02176bf0805541ac84980ed1ad1b3 (diff)
downloadlines.love-6b10c94dd5143ad50ac958a5b5c60300b3755754.tar.gz
disable all debug prints
Diffstat (limited to 'app.lua')
-rw-r--r--app.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/app.lua b/app.lua
index 4b3f1ad..2060f36 100644
--- a/app.lua
+++ b/app.lua
@@ -138,7 +138,7 @@ end
 
 function App.screen.print(msg, x,y)
   local screen_row = 'y'..tostring(y)
-  print('drawing "'..msg..'" at y '..tostring(y))
+--?   print('drawing "'..msg..'" at y '..tostring(y))
   local screen = App.screen
   if screen.contents[screen_row] == nil then
     screen.contents[screen_row] = {}