Skip to content

Commit

Permalink
修更新bank的触发条件错误
Browse files Browse the repository at this point in the history
  • Loading branch information
MrZ626 committed Nov 5, 2024
1 parent e25c0d4 commit 45c9fdc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.lua
Original file line number Diff line number Diff line change
Expand Up @@ -392,9 +392,9 @@ function FMODLoadFunc() -- Will be called again when applying advanced options
for _,bankName in next,{'Music_Beepbox','Music_FL','Music_Community','Music_Extra'} do
if not love.filesystem.getInfo('soundbank/'..bankName..'.bank') then
MSG.new('warn',bankName.." bank file not found")
noFile=true
else
local bankMusic=loadBank('soundbank/'..bankName..'.bank')
noFile=true
if not bankMusic then
MSG.new('warn',"bank "..bankName.." load failed")
else
Expand Down

0 comments on commit 45c9fdc

Please sign in to comment.