hoist out some common settings

This commit is contained in:
Kartik K. Agaram 2023-01-16 09:48:06 -08:00
parent 22bf3da7de
commit 0719fdeaaf
3 changed files with 5 additions and 10 deletions

View File

@ -87,6 +87,11 @@ function App.initialize_globals()
end
function App.initialize(arg)
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