draw lines by default

Freehand strokes are a special case. Let's ignore them for a bit.
This commit is contained in:
Kartik K. Agaram 2022-05-14 15:09:49 -07:00
parent d55960ced0
commit 18bb4621c3
1 changed files with 1 additions and 1 deletions

View File

@ -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.