(Filters) Hardcode amount of threads for blargg_ntsc_snes to 1 for stability

reasons
This commit is contained in:
twinaphex 2014-10-29 08:16:45 +01:00
parent 4a45308016
commit 811280f048

View File

@ -128,7 +128,7 @@ static void *blargg_ntsc_snes_generic_create(const struct softfilter_config *con
return NULL;
filt->workers = (struct softfilter_thread_data*)
calloc(threads, sizeof(struct softfilter_thread_data));
filt->threads = threads;
filt->threads = 1;
filt->in_fmt = in_fmt;
if (!filt->workers)
{