summaryrefslogtreecommitdiffstats
path: root/commands.c
diff options
context:
space:
mode:
Diffstat (limited to 'commands.c')
-rw-r--r--commands.c9
1 files changed, 1 insertions, 8 deletions
diff --git a/commands.c b/commands.c
index 0e0029c..7562bd1 100644
--- a/commands.c
+++ b/commands.c
@@ -474,17 +474,10 @@ bool i_toggle_antialias(arg_t a)
}
}
-/* a < 0: decrease gamma
- * a == 0: reset gamma
- * a > 0: increase gamma
- */
bool i_change_gamma(arg_t a)
{
if (mode == MODE_IMAGE) {
- long val = (long) a;
- int delta = val > 0 ? 1 : (val < 0 ? -1 : -img.gamma);
- img_set_gamma(&img, img.gamma + delta);
- return true;
+ return img_change_gamma(&img, (long) a);
} else {
return false;
}