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-27 23:35:01 -0700
committerKartik K. Agaram <vc@akkartik.com>2022-05-27 23:35:01 -0700
commit229e1514f27e7c48ca20873199aa7b55e72e3dc8 (patch)
treedc37dd2fd3483d8e60e2a501abb62d7d79372bbe /main.lua
parentf4235a1741ef7927147d53adae1adf8584fdfe0d (diff)
downloadtext.love-229e1514f27e7c48ca20873199aa7b55e72e3dc8.tar.gz
.
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 0dd6d5f..f22b908 100644
--- a/main.lua
+++ b/main.lua
@@ -53,8 +53,8 @@ Lines = {{mode='text', data=''}}
 --
 -- Most of the time we'll only persist positions in schema 1, translating to
 -- schema 2 when that's convenient.
-Cursor1 = {line=1, pos=1}  -- position of cursor
 Screen_top1 = {line=1, pos=1}  -- position of start of screen line at top of screen
+Cursor1 = {line=1, pos=1}  -- position of cursor
 Screen_bottom1 = {line=1, pos=1}  -- position of start of screen line at bottom of screen
 
 Cursor_x, Cursor_y = 0, 0  -- in pixels