Skip to content

Commit

Permalink
remove dfjk setting (we have custom binds anyways???)
Browse files Browse the repository at this point in the history
  • Loading branch information
GuglioIsStupid committed Apr 22, 2024
1 parent c381057 commit b6706fe
Showing 1 changed file with 0 additions and 21 deletions.
21 changes: 0 additions & 21 deletions src/love/settings.lua
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,6 @@ hardwareCompression=true
; Possible values: 0.0-1.0
volume=1.0
[Game]
; Sets your arrow keybinds to DFJK
dfjk=false
; "Downscroll" makes arrows scroll down instead of up, and also moves some aspects of the UI around
downscroll=false
Expand Down Expand Up @@ -74,10 +70,6 @@ hardwareCompression=true
; Possible values: 0.0-1.0
volume=1.0
[Game]
; Sets your arrow keybinds to DFJK
dfjk=false
; "Downscroll" makes arrows scroll down instead of up, and also moves some aspects of the UI around
downscroll=false
Expand Down Expand Up @@ -125,12 +117,6 @@ if curOS == "NX" then

love.audio.setVolume(tonumber(ini.readKey(settingsIni, "Audio", "volume")))

if ini.readKey(settingsIni, "Game", "dfjk") == "true" then
settings.dfjk = true
else
settings.dfjk = false
end

if ini.readKey(settingsIni, "Game", "downscroll") == "true" then
settings.downscroll = true
else
Expand All @@ -152,7 +138,6 @@ elseif curOS == "Web" then -- For love.js, we won't bother creating and reading

settings.hardwareCompression = false

settings.dfjk = false
settings.downscroll = false
settings.ghostTapping = false

Expand Down Expand Up @@ -216,12 +201,6 @@ else

love.audio.setVolume(tonumber(ini.readKey(settingsIni, "Audio", "volume")))

if ini.readKey(settingsIni, "Game", "dfjk") == "true" then
settings.dfjk = true
else
settings.dfjk = false
end

if ini.readKey(settingsIni, "Game", "downscroll") == "true" then
settings.downscroll = true
else
Expand Down

0 comments on commit b6706fe

Please sign in to comment.