diff --git a/softhdcuvid.cpp b/softhdcuvid.cpp index 59c2838..ae31d1b 100644 --- a/softhdcuvid.cpp +++ b/softhdcuvid.cpp @@ -3459,11 +3459,11 @@ bool cPluginSoftHdDevice::SetupParse(const char *name, const char *value) return true; } if (!strcasecmp(name, "AudioPassthrough")) { - int i; + int ii; - i = atoi(value); - AudioPassthroughState = i > 0; - ConfigAudioPassthrough = abs(i); + ii = atoi(value); + AudioPassthroughState = ii > 0; + ConfigAudioPassthrough = abs(ii); if (AudioPassthroughState) { CodecSetAudioPassthrough(ConfigAudioPassthrough); } else {