mirror of
https://github.com/SashLilac/cambridge.git
synced 2024-11-22 17:39:03 -06:00
I broke the DAS switch functionality
This commit is contained in:
parent
36837a3af5
commit
891f96e814
8
main.lua
8
main.lua
@ -12,11 +12,15 @@ function love.load()
|
|||||||
config["side_next"] = false
|
config["side_next"] = false
|
||||||
config["reverse_rotate"] = true
|
config["reverse_rotate"] = true
|
||||||
config["fullscreen"] = false
|
config["fullscreen"] = false
|
||||||
config["das_last_key"] = false
|
|
||||||
|
|
||||||
love.window.setMode(love.graphics.getWidth(), love.graphics.getHeight(), {resizable = true});
|
love.window.setMode(love.graphics.getWidth(), love.graphics.getHeight(), {resizable = true});
|
||||||
|
|
||||||
if not config.gamesettings then config.gamesettings = {} end
|
if not config.gamesettings then
|
||||||
|
config.gamesettings = {}
|
||||||
|
config["das_last_key"] = false
|
||||||
|
else
|
||||||
|
config["das_last_key"] = config.gamesettings.das_last_key == 2
|
||||||
|
end
|
||||||
for _, option in ipairs(GameConfigScene.options) do
|
for _, option in ipairs(GameConfigScene.options) do
|
||||||
if not config.gamesettings[option[1]] then
|
if not config.gamesettings[option[1]] then
|
||||||
config.gamesettings[option[1]] = 1
|
config.gamesettings[option[1]] = 1
|
||||||
|
Loading…
Reference in New Issue
Block a user