Merge text0

This commit is contained in:
Kartik K. Agaram 2023-10-28 01:05:35 -07:00
commit 3fb7854008
2 changed files with 2 additions and 2 deletions

View File

@ -84,7 +84,7 @@ Lua is dynamically typed. Tests can't patch over lack of type-checking.
For example, `string.sub` should never use a `_pos`, only an `_offset`.
* Some ADT/interface support would be helpful in keeping per-line state in
sync. Any change to line data should clear line `fragments` and
sync. Any change to line data should clear the derived line property
`screen_line_starting_pos`.
* Some inputs get processed in love.textinput and some in love.keypressed.

View File

@ -118,7 +118,7 @@ function love.run()
App.files = nativefs.getDirectoryItems
App.mkdir = nativefs.createDirectory
App.remove = nativefs.remove
App.source_dir = love.filesystem.getSource()..'/'
App.source_dir = love.filesystem.getSource()..'/' -- '/' should work even on Windows
App.current_dir = nativefs.getWorkingDirectory()..'/'
App.save_dir = love.filesystem.getSaveDirectory()..'/'
App.get_time = love.timer.getTime