this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #2125 from sthilaid/fix-scheme-spr

fixed error in scheme SPR api function

authored by

Vadim Grigoruk and committed by
GitHub
4aac40da 53f7833f

+1 -1
+1 -1
src/api/scheme.c
··· 163 163 const s32 rotate = argn > 6 ? s7_integer(s7_list_ref(sc, args, 6)) : 0; 164 164 const s32 w = argn > 7 ? s7_integer(s7_list_ref(sc, args, 7)) : 1; 165 165 const s32 h = argn > 8 ? s7_integer(s7_list_ref(sc, args, 8)) : 1; 166 - tic_api_spr(tic, id, x, y, w, h, trans_colors, trans_count, scale, (tic_rotate) rotate, (tic_flip)flip); 166 + tic_api_spr(tic, id, x, y, w, h, trans_colors, trans_count, scale, (tic_flip)flip, (tic_rotate) rotate); 167 167 return s7_nil(sc); 168 168 } 169 169 s7_pointer scheme_btn(s7_scheme* sc, s7_pointer args)