Mangle with C and C++

This commit is contained in:
jojo61
2020-06-16 08:49:03 +02:00
parent 05c2585238
commit a424a57036
3 changed files with 8 additions and 7 deletions

View File

@@ -61,7 +61,7 @@ extern "C"
/// vdr-plugin version number.
/// Makefile extracts the version number for generating the file name
/// for the distribution archive.
static const char *const VERSION = "3.2.1"
static const char *const VERSION = "3.2.2"
#ifdef GIT_REV
"-GIT" GIT_REV
#endif
@@ -112,7 +112,6 @@ static int ConfigScalerTest; /// Test for Scalers
static int ConfigColorBlindness;
static int ConfigColorBlindnessFaktor;
/// config deinterlace
static int ConfigVideoDeinterlace[RESOLUTIONS];
@@ -3067,7 +3066,9 @@ bool cPluginSoftHdDevice::Initialize(void)
{
// dsyslog("[softhddev]%s:\n", __FUNCTION__);
#if defined PLACEBO
MyConfigDir = cPlugin::ConfigDirectory("shaders");
const char *d;
d = cPlugin::ConfigDirectory("shaders");
strcpy(MyConfigDir,d);
#endif
MyDevice = new cSoftHdDevice();