renamed "Radio: Space Wave" to "Speakers: Space Wave Radio"

This commit is contained in:
yuni 2024-09-15 21:17:21 +02:00
parent 06a0bf3984
commit 904f7927eb
3 changed files with 6 additions and 2 deletions

View file

@ -1,3 +1,7 @@
# v0.11.1
- Fixed radio stations
# v0.11.0
- Upgrade to Bevy 0.14.2, Rust 1.81

View file

@ -475,7 +475,7 @@ pub fn update_menu(
} else {
&settings.radio_modes[0]
};
text.sections[i].value = format!("Radio: {station}\n");
text.sections[i].value = format!("Speakers: {station}\n");
}
MenuAction::ToggleAR => {
let onoff = bool2string(settings.hud_active);

View file

@ -177,7 +177,7 @@ impl Default for Settings {
radio_modes: vec![
// see also: settings.is_radio_playing()
"Off".to_string(),
"Space Wave".to_string(),
"Space Wave Radio".to_string(),
"Amplify outside recordings".to_string(),
],
volume_sfx: 100,