diff options
author | Bert Münnich <ber.t@posteo.de> | 2013-11-14 17:06:20 +0100 |
---|---|---|
committer | Bert Münnich <ber.t@posteo.de> | 2013-11-14 17:06:20 +0100 |
commit | 50f9ad14de921295d7a1687799e30562808e940a (patch) | |
tree | 0176dbb630a74ba38a610020ad1802a8ae3d3fa1 /commands.c | |
parent | 2737fc8b81829372d454f407e19733d66d964272 (diff) |
Refactored remote changes
Diffstat (limited to 'commands.c')
-rw-r--r-- | commands.c | 9 |
1 files changed, 1 insertions, 8 deletions
@@ -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; } |