We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 33eceaf commit 118806aCopy full SHA for 118806a
Metro/Metro_RP2350_Chips_Challenge/definitions.py
@@ -49,15 +49,17 @@
49
dac.headphone_output = True
50
dac.headphone_volume = -15 # dB
51
52
-# Settings
53
if ltv320_present:
54
- PLAY_SOUNDS = True
+ _default_play_sounds = True
55
else:
56
- PLAY_SOUNDS = False
+ _default_play_sounds = False
57
58
if "sound" in launcher_config:
59
if launcher_config["sound"] == "mute":
60
+
61
+# Settings
62
+PLAY_SOUNDS = _default_play_sounds
63
64
# Timing Constants
65
TICKS_PER_SECOND = const(20)
0 commit comments