(svn r14938) -Fix: some small inconsistencies w.r.t. "0 is disabled" setting handling

This commit is contained in:
rubidium
2009-01-09 19:34:05 +00:00
parent b0b6285c26
commit f902e3097d
2 changed files with 2 additions and 3 deletions

View File

@@ -854,7 +854,7 @@ struct PatchesSelectionWindow : Window {
value = (int32)ReadValue(var, sd->save.conv);
/* Draw [<][>] boxes for settings of an integer-type */
DrawArrowButtons(x, y, COLOUR_YELLOW, state, (editable && value != sdb->min), (editable && value != sdb->max));
DrawArrowButtons(x, y, COLOUR_YELLOW, state, editable && value != (sdb->flags & SGF_0ISDISABLED ? 0 : sdb->min), editable && value != sdb->max);
disabled = (value == 0) && (sdb->flags & SGF_0ISDISABLED);
if (disabled) {