Skip to content

Commit

Permalink
Merge pull request Stabyourself#46 from qixils/fix-filesystem
Browse files Browse the repository at this point in the history
fix: remove redundant setIdentity
  • Loading branch information
Stabyourself authored Aug 8, 2023
2 parents 2b1aee3 + f5d3c05 commit 57829fd
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion game.lua
Original file line number Diff line number Diff line change
Expand Up @@ -2604,7 +2604,7 @@ function game_keypressed(key, unicode)
pausemenuselected2 = 1
elseif (key == "right" or key == "d") then
pausemenuselected2 = 2
elseif (key == "return" or key == "enter" or key == "kpenter" or key == " ") then
elseif (key == "return" or key == "enter" or key == "kpenter" or key == "space") then
if pausemenuselected2 == 1 then
love.audio.stop()
pausemenuopen = false
Expand Down
2 changes: 0 additions & 2 deletions musicloader_thread.lua
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@ require("love.sound")
require("love.audio")
require("love.timer")

love.filesystem.setIdentity("mari0")

local musicpath = "sounds/%s.ogg"

local musiclist = {}
Expand Down

0 comments on commit 57829fd

Please sign in to comment.