diff --git a/main.py b/main.py index 1817121..6ec770d 100644 --- a/main.py +++ b/main.py @@ -20,7 +20,7 @@ def main(): world.setLevel(level) - pygame.mixer.music.load("sounds/game.mp3") + pygame.mixer.music.load("sounds/game_01.ogg") pygame.mixer.music.play(-1) pygame.mixer.music.set_volume(.3) while True: @@ -37,7 +37,8 @@ def main(): def menuScreen(): pygame.init() - pygame.mixer.music.load("sounds/menu.mp3") + pygame.mixer.init() + pygame.mixer.music.load("sounds/menu_02.ogg") pygame.mixer.music.play(-1) pygame.mixer.music.set_volume(.4) surface = pygame.display.set_mode((1600,900)) #0,6671875 and 0,(6) of HDd resoultiondd diff --git a/sounds/game_01.ogg b/sounds/game_01.ogg new file mode 100644 index 0000000..acebe26 Binary files /dev/null and b/sounds/game_01.ogg differ diff --git a/sounds/menu_02.ogg b/sounds/menu_02.ogg new file mode 100644 index 0000000..b9e136c Binary files /dev/null and b/sounds/menu_02.ogg differ