diff options
author | louis <louis.braun@gmx.de> | 2015-08-10 22:48:52 +0200 |
---|---|---|
committer | louis <louis.braun@gmx.de> | 2015-08-10 22:48:52 +0200 |
commit | f44aabb7ac97f329645bab102849150f5bc30983 (patch) | |
tree | 93a194fda82240ebe2057e7163745b99198a9651 /libcore | |
parent | b62c4ceae0568ef6e7c7adb92d7f01802173fc22 (diff) | |
download | vdr-plugin-skindesigner-f44aabb7ac97f329645bab102849150f5bc30983.tar.gz vdr-plugin-skindesigner-f44aabb7ac97f329645bab102849150f5bc30983.tar.bz2 |
fixed bug that setup int parameters do not respect max value
Diffstat (limited to 'libcore')
-rw-r--r-- | libcore/skinsetup.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libcore/skinsetup.c b/libcore/skinsetup.c index c9ae7bd..1630cc9 100644 --- a/libcore/skinsetup.c +++ b/libcore/skinsetup.c @@ -37,7 +37,7 @@ void cSkinSetupParameter::Debug(void) { dsyslog("skindesigner: min %d, max %d", min, max); if (type == sptString && options) { for (int i=0; i < numOptions; i++) { - dsyslog("skindesigner: option %d: %s, translated: %s", i+1, options[i], optionsTranslated[i]); + dsyslog("skindesigner: option %d: %s", i+1, options[i]); } } } |