Hi,
I´m currently translating my old A7 .wdl scripts to the new Lite-C for A8.
I´m being able to update most of my .wdl code to Lite-C so far, but bumped into a tricky one now:
if(event_type == EVENT_SCAN)
{
...
vec_set (temp.x, my .x);
vec_to_screen (temp.x, camera_1);
...
it´s generating the following error message:
ERROR in items.c, line 181:
'temp' undeclared identifier"
< vec_set (temp.x, my .x);
>
Way tricky to find the replacement syntax, because the code in the examples is the same i´m using. Is 'temp' replaced by another syntax, or the ´temp´ concept isn´t used anymore in the new codes?
Thanks in advance.