diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2023-01-22 22:12:58 -0800 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2023-01-22 22:12:58 -0800 |
commit | 5cd5f54355a9cb1b8f5f183223ec945bdfca3a89 (patch) | |
tree | 41960f167c8b425965eb18aabd3d8578ccd4c77b | |
parent | d13d0f9af050bbaab2395854e2531cb6210e0e69 (diff) | |
download | text.love-5cd5f54355a9cb1b8f5f183223ec945bdfca3a89.tar.gz |
remove a condition
-rw-r--r-- | app.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app.lua b/app.lua index cf6de60..30fc696 100644 --- a/app.lua +++ b/app.lua @@ -150,7 +150,7 @@ function App.initialize_for_test() App.filesystem = {} App.fake_keys_pressed = {} App.fake_mouse_state = {x=-1, y=-1} - if App.initialize_globals then App.initialize_globals() end + App.initialize_globals() end function App.screen.init(dims) |