X-Git-Url: http://geeqie.org/cgi-bin/gitweb.cgi?p=geeqie.git;a=blobdiff_plain;f=src%2Frcfile.c;h=39e6e58a6e0bbe5d82ed9f870cf7510c7d396947;hp=4928106b97c950bd7672db50ccd9441a533eceff;hb=138cf42cc6b36d2d335fbccdc6a0acf0ad731afa;hpb=1130f7a65f849f02b7205b591ab69349453b8ccf diff --git a/src/rcfile.c b/src/rcfile.c index 4928106b..39e6e58a 100644 --- a/src/rcfile.c +++ b/src/rcfile.c @@ -451,15 +451,15 @@ static void write_global_attributes(GString *outstr, gint indent) WRITE_NL(); WRITE_BOOL(*options, metadata.keywords_case_sensitive); WRITE_NL(); WRITE_BOOL(*options, metadata.write_orientation); - WRITE_NL(); WRITE_UINT(*options, stereo.mode); - WRITE_NL(); WRITE_UINT(*options, stereo.fsmode); + WRITE_NL(); WRITE_INT(*options, stereo.mode); + WRITE_NL(); WRITE_INT(*options, stereo.fsmode); WRITE_NL(); WRITE_BOOL(*options, stereo.enable_fsmode); - WRITE_NL(); WRITE_UINT(*options, stereo.fixed_w); - WRITE_NL(); WRITE_UINT(*options, stereo.fixed_h); - WRITE_NL(); WRITE_UINT(*options, stereo.fixed_x1); - WRITE_NL(); WRITE_UINT(*options, stereo.fixed_y1); - WRITE_NL(); WRITE_UINT(*options, stereo.fixed_x2); - WRITE_NL(); WRITE_UINT(*options, stereo.fixed_y2); + WRITE_NL(); WRITE_INT(*options, stereo.fixed_w); + WRITE_NL(); WRITE_INT(*options, stereo.fixed_h); + WRITE_NL(); WRITE_INT(*options, stereo.fixed_x1); + WRITE_NL(); WRITE_INT(*options, stereo.fixed_y1); + WRITE_NL(); WRITE_INT(*options, stereo.fixed_x2); + WRITE_NL(); WRITE_INT(*options, stereo.fixed_y2); } static void write_color_profile(GString *outstr, gint indent) @@ -721,15 +721,15 @@ static gboolean load_global_params(const gchar **attribute_names, const gchar ** if (READ_BOOL(*options, metadata.keywords_case_sensitive)) continue; if (READ_BOOL(*options, metadata.write_orientation)) continue; - if (READ_UINT(*options, stereo.mode)) continue; - if (READ_UINT(*options, stereo.fsmode)) continue; + if (READ_INT(*options, stereo.mode)) continue; + if (READ_INT(*options, stereo.fsmode)) continue; if (READ_BOOL(*options, stereo.enable_fsmode)) continue; - if (READ_UINT(*options, stereo.fixed_w)) continue; - if (READ_UINT(*options, stereo.fixed_h)) continue; - if (READ_UINT(*options, stereo.fixed_x1)) continue; - if (READ_UINT(*options, stereo.fixed_y1)) continue; - if (READ_UINT(*options, stereo.fixed_x2)) continue; - if (READ_UINT(*options, stereo.fixed_y2)) continue; + if (READ_INT(*options, stereo.fixed_w)) continue; + if (READ_INT(*options, stereo.fixed_h)) continue; + if (READ_INT(*options, stereo.fixed_x1)) continue; + if (READ_INT(*options, stereo.fixed_y1)) continue; + if (READ_INT(*options, stereo.fixed_x2)) continue; + if (READ_INT(*options, stereo.fixed_y2)) continue; /* dummy options */ if (READ_DUMMY(*options, image.dither_quality, "deprecated since 2012-08-13")) continue;