| 792 | } |
| 793 | |
| 794 | void CWorldSoundsDialog::OnPlaysound() { |
| 795 | int n = D3EditState.current_sound; |
| 796 | |
| 797 | if (Num_sounds < 1) |
| 798 | return; |
| 799 | |
| 800 | Sound_system.BeginSoundFrame(); |
| 801 | Sound_system.Play2dSound(n); |
| 802 | Sound_system.EndSoundFrame(); |
| 803 | } |
| 804 | |
| 805 | void CWorldSoundsDialog::OnKillfocusSoundinnerconeangleEdit() { |
| 806 | CEdit *ebox; |
nothing calls this directly
no test coverage detected