renamed "Radio: Space Wave" to "Speakers: Space Wave Radio"
This commit is contained in:
parent
06a0bf3984
commit
904f7927eb
|
@ -1,3 +1,7 @@
|
||||||
|
# v0.11.1
|
||||||
|
|
||||||
|
- Fixed radio stations
|
||||||
|
|
||||||
# v0.11.0
|
# v0.11.0
|
||||||
|
|
||||||
- Upgrade to Bevy 0.14.2, Rust 1.81
|
- Upgrade to Bevy 0.14.2, Rust 1.81
|
||||||
|
|
|
@ -475,7 +475,7 @@ pub fn update_menu(
|
||||||
} else {
|
} else {
|
||||||
&settings.radio_modes[0]
|
&settings.radio_modes[0]
|
||||||
};
|
};
|
||||||
text.sections[i].value = format!("Radio: {station}\n");
|
text.sections[i].value = format!("Speakers: {station}\n");
|
||||||
}
|
}
|
||||||
MenuAction::ToggleAR => {
|
MenuAction::ToggleAR => {
|
||||||
let onoff = bool2string(settings.hud_active);
|
let onoff = bool2string(settings.hud_active);
|
||||||
|
|
|
@ -177,7 +177,7 @@ impl Default for Settings {
|
||||||
radio_modes: vec![
|
radio_modes: vec![
|
||||||
// see also: settings.is_radio_playing()
|
// see also: settings.is_radio_playing()
|
||||||
"Off".to_string(),
|
"Off".to_string(),
|
||||||
"Space Wave".to_string(),
|
"Space Wave Radio".to_string(),
|
||||||
"Amplify outside recordings".to_string(),
|
"Amplify outside recordings".to_string(),
|
||||||
],
|
],
|
||||||
volume_sfx: 100,
|
volume_sfx: 100,
|
||||||
|
|
Loading…
Reference in a new issue