(Audio DSP) Add NULL entry to initializer lists for 'events'

This commit is contained in:
twinaphex 2014-04-29 07:06:25 +02:00
parent 28aa7a46f9
commit a716070cdc
9 changed files with 17 additions and 17 deletions

View File

@ -202,7 +202,8 @@ static const rarch_dsp_plugin_t dsp_plug = {
rarch_dsp_free,
RARCH_DSP_API_VERSION,
rarch_dsp_config,
"Echo (SSE2)"
"Echo (SSE2)",
NULL
};
RARCH_API_EXPORT const rarch_dsp_plugin_t* RARCH_API_CALLTYPE

View File

@ -193,7 +193,8 @@ static const rarch_dsp_plugin_t dsp_plug = {
dsp_free,
RARCH_DSP_API_VERSION,
rarch_dsp_config,
"Echo (SSE2)"
"Echo (SSE2)",
NULL
};
RARCH_API_EXPORT const rarch_dsp_plugin_t* RARCH_API_CALLTYPE

View File

@ -410,7 +410,8 @@ const rarch_dsp_plugin_t dsp_plug = {
rarch_dsp_free,
RARCH_DSP_API_VERSION,
rarch_dsp_config,
"Equalizer"
"Equalizer",
NULL
};
RARCH_API_EXPORT const rarch_dsp_plugin_t* RARCH_API_CALLTYPE rarch_dsp_plugin_init(void)

View File

@ -375,10 +375,11 @@ const rarch_dsp_plugin_t dsp_plug = {
RARCH_DSP_API_VERSION,
rarch_dsp_config,
#ifdef __SSE2__
"IIR (SSE2)"
"IIR (SSE2)",
#else
"IIR"
"IIR",
#endif
NULL
};

View File

@ -181,7 +181,8 @@ const rarch_dsp_plugin_t dsp_plug = {
rarch_dsp_free,
RARCH_DSP_API_VERSION,
rarch_dsp_config,
"Phaser plugin"
"Phaser plugin",
NULL
};
RARCH_API_EXPORT const rarch_dsp_plugin_t* RARCH_API_CALLTYPE rarch_dsp_plugin_init(void)

View File

@ -34,14 +34,6 @@ extern "C" {
#define RARCH_API_CALLTYPE
#endif
#ifndef RARCH_FALSE
#define RARCH_FALSE 0
#endif
#ifndef RARCH_TRUE
#define RARCH_TRUE 1
#endif
#define RARCH_DSP_API_VERSION 5
typedef struct rarch_dsp_info

View File

@ -385,7 +385,8 @@ const rarch_dsp_plugin_t dsp_plug = {
rarch_dsp_free,
RARCH_DSP_API_VERSION,
rarch_dsp_config,
"Reverberatation"
"Reverberatation",
NULL
};
RARCH_API_EXPORT const rarch_dsp_plugin_t* RARCH_API_CALLTYPE rarch_dsp_plugin_init(void)

View File

@ -118,7 +118,8 @@ const rarch_dsp_plugin_t dsp_plug = {
rarch_dsp_free,
RARCH_DSP_API_VERSION,
rarch_dsp_config,
"Volume"
"Volume",
NULL
};
RARCH_API_EXPORT const rarch_dsp_plugin_t* RARCH_API_CALLTYPE rarch_dsp_plugin_init(void)

View File

@ -174,7 +174,8 @@ const rarch_dsp_plugin_t dsp_plug = {
rarch_dsp_free,
RARCH_DSP_API_VERSION,
rarch_dsp_config,
"Wah"
"Wah",
NULL
};
RARCH_API_EXPORT const rarch_dsp_plugin_t* RARCH_API_CALLTYPE rarch_dsp_plugin_init(void)