Put sinc resampler upfront in struct table - rename cc resampler

back to original name
This commit is contained in:
twinaphex 2014-04-20 06:26:48 +02:00
parent 818a5d4c11
commit 4968eafddf
2 changed files with 2 additions and 2 deletions

View File

@ -319,6 +319,6 @@ const rarch_resampler_t CC_resampler = {
resampler_CC_init,
resampler_CC_process,
resampler_CC_free,
"convoluted-cosine",
"CC",
};

View File

@ -23,10 +23,10 @@
#include "../general.h"
static const rarch_resampler_t *backends[] = {
&sinc_resampler,
#ifdef HAVE_CC_RESAMPLER
&CC_resampler,
#endif
&sinc_resampler,
NULL,
};