this repo has no description
0
fork

Configure Feed

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

Fix wren bindings after the FFT PR broke it. (#2623)

Fixes https://github.com/nesbox/TIC-80/issues/2621.

authored by

Alice and committed by
GitHub
b3d9c08c 52d6edbe

+2 -2
+2 -2
src/api/wren.c
··· 1595 1595 if (strcmp(signature, "static TIC.fget(_,_)" ) == 0) return wren_fget; 1596 1596 if (strcmp(signature, "static TIC.fset(_,_,_)" ) == 0) return wren_fset; 1597 1597 1598 - if (strcmp(signature, "static TIC.fft(_)" ) == 0) return wren_fft; 1599 - if (strcmp(signature, "static TIC.ffts(_)" ) == 0) return wren_ffts; 1598 + if (strcmp(signature, "static TIC.fft(_,_)" ) == 0) return wren_fft; 1599 + if (strcmp(signature, "static TIC.ffts(_,_)" ) == 0) return wren_ffts; 1600 1600 1601 1601 // internal functions 1602 1602 if (strcmp(signature, "static TIC.map_width__" ) == 0) return wren_map_width;