about summary refs log tree commit diff stats
path: root/main.lua
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2022-05-14 15:09:49 -0700
committerKartik K. Agaram <vc@akkartik.com>2022-05-14 15:09:49 -0700
commit18bb4621c39204396b02fb30da5f533aae65b834 (patch)
tree5f525e2b47f80402e08dd52d537c640272edaba1 /main.lua
parentd55960ced007758a6df45d5010c7b4f28339e7a6 (diff)
downloadtext.love-18bb4621c39204396b02fb30da5f533aae65b834.tar.gz
draw lines by default
Freehand strokes are a special case. Let's ignore them for a bit.
Diffstat (limited to 'main.lua')
-rw-r--r--main.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/main.lua b/main.lua
index d6e45c4..11a2809 100644
--- a/main.lua
+++ b/main.lua
@@ -34,7 +34,7 @@ lines = {}
 
 screenw, screenh, screenflags = 0, 0, nil
 
-current_mode = 'freehand'
+current_mode = 'line'
 
 -- All drawings span 100% of some conceptual 'page width' and divide it up
 -- into 256 parts. `drawingw` describes their width in pixels.