Merge lines.love

This commit is contained in:
Kartik K. Agaram 2023-01-16 09:57:06 -08:00
commit 36ec0b4b06
3 changed files with 6 additions and 10 deletions

View File

@ -85,6 +85,12 @@ function App.initialize_globals()
end
function App.initialize(arg)
love.window.setVSync(0) -- remove some delays in exchange for risk of screen tears; we're not a game
love.keyboard.setTextInput(true) -- bring up keyboard on touch screen
love.keyboard.setKeyRepeat(true)
love.graphics.setBackgroundColor(1,1,1)
if Current_app == 'run' then
run.initialize(arg)
elseif Current_app == 'source' then

View File

@ -16,11 +16,6 @@ end
-- called only for real run
function run.initialize(arg)
log_new('run')
love.keyboard.setTextInput(true) -- bring up keyboard on touch screen
love.keyboard.setKeyRepeat(true)
love.graphics.setBackgroundColor(1,1,1)
if Settings then
run.load_settings()
else

View File

@ -61,11 +61,6 @@ end
-- called only for real run
function source.initialize()
log_new('source')
love.keyboard.setTextInput(true) -- bring up keyboard on touch screen
love.keyboard.setKeyRepeat(true)
love.graphics.setBackgroundColor(1,1,1)
if Settings and Settings.source then
source.load_settings()
else