1 | function scr_talking_text |
2 | { |
3 | switch (current_char) |
4 | { |
5 | case " ": |
6 | case "*": |
7 | break; |
8 | default: |
9 | audio_stop_sound(snd_footsteps_water_1); |
10 | audio_play_sound(snd_footsteps_water_1, 20, false); |
11 | } |
12 | can_talk = true; |
13 | } |