aboutsummaryrefslogtreecommitdiff
path: root/rect.c
diff options
context:
space:
mode:
authorFranklin Wei <franklin@rockbox.org>2024-07-21 18:06:37 -0400
committerSimon Tatham <anakin@pobox.com>2024-07-31 23:29:00 +0100
commit5de69c22b0ff037f648a740a7c01869e78587df2 (patch)
treea4ea1196ffd2942a0937ae5d05a92710c6be6589 /rect.c
parentc010ca122f8e5a9b9828a846cbbc0d32de489b20 (diff)
downloadpuzzles-5de69c22b0ff037f648a740a7c01869e78587df2.zip
puzzles-5de69c22b0ff037f648a740a7c01869e78587df2.tar.gz
puzzles-5de69c22b0ff037f648a740a7c01869e78587df2.tar.bz2
puzzles-5de69c22b0ff037f648a740a7c01869e78587df2.tar.xz
Refactor `button & ~MOD_MASK' as `STRIP_BUTTON_MODIFIERS(button)'.
This refactors all instances of bitwise-ANDs with `~MOD_MASK'. There is a handful of more complex instances I left unchanged (in cube.c, midend.c, and twiddle.c), since those AND with `~MOD_MASK | MOD_NUM_KEYPAD' or similar. I don't think it's worth writing a macro for those cases. Also document this new macro's usage in devel.but.
Diffstat (limited to 'rect.c')
-rw-r--r--rect.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/rect.c b/rect.c
index 89f3a02..c3ee1ab 100644
--- a/rect.c
+++ b/rect.c
@@ -2394,7 +2394,7 @@ static char *interpret_move(const game_state *from, game_ui *ui,
bool startdrag = false, enddrag = false, active = false, erasing = false;
char buf[80], *ret;
- button &= ~MOD_MASK;
+ button = STRIP_BUTTON_MODIFIERS(button);
coord_round(FROMCOORD((float)x), FROMCOORD((float)y), &xc, &yc);