X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=platform%2Fcommon%2Fconfig_file.c;h=f8f7fdf13fb4b233958a5473d5a0da954ce1fa61;hb=b59172e3d428eb6848e6874861804c79bbc9d1ec;hp=f058fbd8dd052ca60c6b5dc67bf5b31c4d749a26;hpb=cfae1ae17956a94d7deae336ce6b9571b3f825f1;p=picodrive.git diff --git a/platform/common/config_file.c b/platform/common/config_file.c index f058fbd..f8f7fdf 100644 --- a/platform/common/config_file.c +++ b/platform/common/config_file.c @@ -308,11 +308,6 @@ static int custom_read(menu_entry *me, const char *var, const char *val) return 0; return 1; - case MA_OPT2_GAMMA: - if (strcasecmp(var, "Gamma correction") != 0) return 0; - currentConfig.gamma = (int) (atof(val) * 100.0); - return 1; - case MA_CDOPT_READAHEAD: if (strcasecmp(var, "ReadAhead buffer") != 0) return 0; PicoCDBuffers = atoi(val) / 2;