Skip to content
Snippets Groups Projects
Commit 9eecb7fb authored by Dennis Payne's avatar Dennis Payne
Browse files

Update to work with current love.

parent 9ad2759a
No related branches found
No related tags found
No related merge requests found
......@@ -16,7 +16,7 @@ end
function game.enter( prev_state, ... )
local args = ...
if prev_state == "gamepaused" then
music:resume()
music:play()
end
if prev_state == "gameover" or prev_state == "gamefinished" then
side_panel.reset()
......
gamestates = require "gamestates"
music = love.audio.newSource( "sounds/music/S31-Night Prowler.ogg" )
music = love.audio.newSource( "sounds/music/S31-Night Prowler.ogg", "static" )
music:setLooping( true )
function love.load()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment