This commit is contained in:
Kacper Kostka
2023-02-23 17:10:51 +01:00
parent 68e5f9525e
commit 99121a0a03
6 changed files with 27 additions and 30 deletions

View File

@@ -64,8 +64,7 @@ function mm_game_theme.reset()
if not have_bg then
if core.settings:get_bool("menu_clouds") then
--core.set_clouds(true)
mm_game_theme.set_dirt_bg()
core.set_clouds(true)
else
mm_game_theme.set_dirt_bg()
end
@@ -199,6 +198,6 @@ function mm_game_theme.set_music(gamedetails)
if mm_game_theme.music_handle ~= nil then
core.sound_stop(mm_game_theme.music_handle)
end
local music_path = "amogus_incomming"
local music_path = gamedetails.path .. DIR_DELIM .. "menu" .. DIR_DELIM .. "theme"
mm_game_theme.music_handle = core.sound_play(music_path, true)
end
end