예제 #1
0
파일: sid.c 프로젝트: markjreed/vice-emu
void sid_sound_machine_close(sound_t *psid)
{
    sid_engine.close(psid);
    /* free the temp. buffers */
    if (buf1) {
        lib_free(buf1);
        buf1 = NULL;
    }
    if (buf2) {
        lib_free(buf2);
        buf2 = NULL;
    }
}
예제 #2
0
void sid_sound_machine_close(sound_t *psid)
{
    sid_engine.close(psid);
}