summaryrefslogtreecommitdiff
path: root/src/sliceitoff/game/game.py
diff options
context:
space:
mode:
authorViljami Ilola <+@hix.fi>2024-04-27 01:29:45 +0300
committerViljami Ilola <+@hix.fi>2024-04-27 01:29:45 +0300
commit7a33e5020f9b1e7cf89bc532e2ddcf681f5bcf9c (patch)
tree544e868288f05213452dec9b7b789bd1eb208191 /src/sliceitoff/game/game.py
parenta4794437d561a01c8bea12d59502e4cc72acfbea (diff)
volume control
Diffstat (limited to 'src/sliceitoff/game/game.py')
-rw-r--r--src/sliceitoff/game/game.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sliceitoff/game/game.py b/src/sliceitoff/game/game.py
index f85a544..57f2c56 100644
--- a/src/sliceitoff/game/game.py
+++ b/src/sliceitoff/game/game.py
@@ -21,7 +21,7 @@ from .mainmenu import Mainmenu, MenuItems
from .level import Level
from .show import Show
from .initials import Initials
-from .settings import Settings
+from .settings import SettingsMenu
class Game:
""" This is the whole game. """
@@ -84,7 +84,7 @@ class Game:
def settings(self):
""" settings menu where one can adjust volume for example """
- menu = Settings()
+ menu = SettingsMenu()
while menu.active:
menu.update(dt = self.clock.tick())
self.display.update([menu])