| 916 | } |
| 917 | |
| 918 | void SettingsMenuLayout::LoadSfx() { |
| 919 | this->setting_edit_sfx = pu::audio::LoadSfx(TryGetActiveThemeResource("sound/Settings/SettingEdit.wav")); |
| 920 | this->setting_save_sfx = pu::audio::LoadSfx(TryGetActiveThemeResource("sound/Settings/SettingSave.wav")); |
| 921 | this->back_sfx = pu::audio::LoadSfx(TryGetActiveThemeResource("sound/Settings/Back.wav")); |
| 922 | this->setting_menu_move_sfx = pu::audio::LoadSfx(TryGetActiveThemeResource("sound/Settings/SettingMenuMove.wav")); |
| 923 | } |
| 924 | |
| 925 | void SettingsMenuLayout::DisposeSfx() { |
| 926 | pu::audio::DestroySfx(this->setting_edit_sfx); |
nothing calls this directly
no test coverage detected