X-Git-Url: https://git.artsoft.org/?a=blobdiff_plain;f=src%2Fgame_em%2Fsound.c;h=c1334cc7bb05381cada4ab00d9b26452cb13964d;hb=98edd2c02783d6cf8ffe4d7aec340fe80cc8bcff;hp=5aedabb35abb1cbf42faaa23b67b32e6502e6883;hpb=1fcb3ddbb8404effdcfa5ebbd53d3ff5009260f6;p=rocksndiamonds.git diff --git a/src/game_em/sound.c b/src/game_em/sound.c index 5aedabb3..c1334cc7 100644 --- a/src/game_em/sound.c +++ b/src/game_em/sound.c @@ -86,7 +86,7 @@ int sound_thread(void) mix_buffer = 0; mix_count = 0; - memset(sound_play, 0, sizeof(sound_play)); /* not playing any sounds */ + clear_mem(sound_play, sizeof(sound_play)); /* not playing any sounds */ for (;;) { @@ -294,7 +294,7 @@ int sound_thread(void) if (mix_count && audio_fd != -1) { /* prepare mix buffer */ - memset(mix_buffer, 0, fragment_size * sizeof(*mix_buffer)); + clear_mem(mix_buffer, fragment_size * sizeof(*mix_buffer)); for (i = 0; i < mix_count; i++) {