diff options
author | Vito Caputo <vcaputo@pengaru.com> | 2019-11-24 11:39:40 -0800 |
---|---|---|
committer | Vito Caputo <vcaputo@pengaru.com> | 2019-11-24 11:39:40 -0800 |
commit | 13189997111deac782df2be3db4e4669d5635ca2 (patch) | |
tree | e1dfc0e1c3031b9aaff1c0d0c09933f9311cce16 /src/modules/roto/roto.c | |
parent | 8f774980b9222f39f9e74e8e3a694cad55753e2f (diff) |
rototiller: rototiller_fragmenter_t s/num/number/
Mechanical change removing abbreviation for consistency
Diffstat (limited to 'src/modules/roto/roto.c')
-rw-r--r-- | src/modules/roto/roto.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/roto/roto.c b/src/modules/roto/roto.c index 8e91c89..56ca08a 100644 --- a/src/modules/roto/roto.c +++ b/src/modules/roto/roto.c @@ -169,11 +169,11 @@ static void init_roto(uint8_t texture[256][256], int32_t *costab, int32_t *sinta } -static int roto_fragmenter(void *context, const fb_fragment_t *fragment, unsigned num, fb_fragment_t *res_fragment) +static int roto_fragmenter(void *context, const fb_fragment_t *fragment, unsigned number, fb_fragment_t *res_fragment) { roto_context_t *ctxt = context; - return fb_fragment_slice_single(fragment, ctxt->n_cpus, num, res_fragment); + return fb_fragment_slice_single(fragment, ctxt->n_cpus, number, res_fragment); } |