mute audio by default in debug builds
This commit is contained in:
parent
d2bb8d447c
commit
4a5a239639
|
@ -36,9 +36,13 @@ pub struct Settings {
|
||||||
|
|
||||||
impl Default for Settings {
|
impl Default for Settings {
|
||||||
fn default() -> Self {
|
fn default() -> Self {
|
||||||
|
// Mute audio by default in debug builds
|
||||||
|
let default_mute_sfx = cfg!(debug_assertions);
|
||||||
|
let default_mute_music = cfg!(debug_assertions);
|
||||||
|
|
||||||
Settings {
|
Settings {
|
||||||
mute_sfx: false,
|
mute_sfx: default_mute_sfx,
|
||||||
mute_music: false,
|
mute_music: default_mute_music,
|
||||||
volume_sfx: 100,
|
volume_sfx: 100,
|
||||||
volume_music: 100,
|
volume_music: 100,
|
||||||
font_size_hud: 32.0,
|
font_size_hud: 32.0,
|
||||||
|
|
Loading…
Reference in a new issue