diff options
author | nicm <nicm> | 2020-04-01 07:52:07 +0000 |
---|---|---|
committer | nicm <nicm> | 2020-04-01 07:52:07 +0000 |
commit | c129ed3233d8303f3ae1fc14a9728e8d231c3911 (patch) | |
tree | 29e83a3d90758739db4f8ce1664632b044bdfad7 | |
parent | 89d2a20e561878f3fee11005369c1d56b9a08c38 (diff) | |
download | rtmux-c129ed3233d8303f3ae1fc14a9728e8d231c3911.tar.gz rtmux-c129ed3233d8303f3ae1fc14a9728e8d231c3911.tar.bz2 rtmux-c129ed3233d8303f3ae1fc14a9728e8d231c3911.zip |
Use a comparison to check for wrap and avoid an expensive modulus.
-rw-r--r-- | window-copy.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/window-copy.c b/window-copy.c index 57228273..4a3ee9ea 100644 --- a/window-copy.c +++ b/window-copy.c @@ -2523,8 +2523,9 @@ window_copy_cstrtocellpos(struct grid *gd, u_int ncells, u_int *ppx, u_int *ppy, cells[cell].d = window_copy_cellstring(gl, px, &cells[cell].dlen); cell++; - px = (px + 1) % gd->sx; - if (px == 0) { + px++; + if (px == gd->sx) { + px = 0; pywrap++; gl = grid_peek_line(gd, pywrap); } |