mirror of
https://github.com/CTCaer/RetroArch.git
synced 2024-12-16 15:27:41 +00:00
(Filters) Hardcode amount of threads for blargg_ntsc_snes to 1 for stability
reasons
This commit is contained in:
parent
4a45308016
commit
811280f048
@ -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)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user