diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2022-05-23 13:18:34 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2022-05-23 13:18:34 -0700 |
commit | 254ae7ad99777d56e48379ef3d1e90c189f7e321 (patch) | |
tree | 6c6e905cd96bbbb61f970c1be976474838592bb2 | |
parent | 4490c5034f5c4a7168de32788a4fa5e3e2a8a23d (diff) | |
download | text.love-254ae7ad99777d56e48379ef3d1e90c189f7e321.tar.gz |
.
-rw-r--r-- | main.lua | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/main.lua b/main.lua index c191fc4..796d711 100644 --- a/main.lua +++ b/main.lua @@ -83,6 +83,7 @@ Filename = love.filesystem.getUserDirectory()..'/lines.txt' Debug_main = false + -- still in App.initialize if #arg > 0 then Filename = arg[1] end @@ -95,7 +96,7 @@ Debug_main = false end love.window.setTitle('Text with Lines - '..Filename) -end +end -- App.initialize function App.filedropped(file) Filename = file:getFilename() |