From 4968eafddfc8943d408f6824233a5e7f73b684f9 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Sun, 20 Apr 2014 06:26:48 +0200 Subject: [PATCH] Put sinc resampler upfront in struct table - rename cc resampler back to original name --- audio/cc_resampler.c | 2 +- audio/resampler.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/audio/cc_resampler.c b/audio/cc_resampler.c index 9f7bb465d3..9bda77096c 100644 --- a/audio/cc_resampler.c +++ b/audio/cc_resampler.c @@ -319,6 +319,6 @@ const rarch_resampler_t CC_resampler = { resampler_CC_init, resampler_CC_process, resampler_CC_free, - "convoluted-cosine", + "CC", }; diff --git a/audio/resampler.c b/audio/resampler.c index 9d6eafe990..ed86465921 100644 --- a/audio/resampler.c +++ b/audio/resampler.c @@ -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, };