diff options
Diffstat (limited to 'src/objects')
-rw-r--r-- | src/objects/obj_control.cpp | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/objects/obj_control.cpp b/src/objects/obj_control.cpp index 473ce5f..19b8b40 100644 --- a/src/objects/obj_control.cpp +++ b/src/objects/obj_control.cpp @@ -1,6 +1,10 @@ OUT #include <cstdio> OUT #include <cstdlib> +double yd=0; + +double id(double a){return a;} + EVENT(create){ x=10; y=240; @@ -8,7 +12,7 @@ EVENT(create){ } EVENT(step){ - static double yd=0; + // static double yd=0; x++; y+=yd; yd+=(double)rand()/RAND_MAX*2-y/240; @@ -16,7 +20,7 @@ EVENT(step){ EVENT(draw){ char *s; - asprintf(&s,"controllll: x=%g y=%g",x,y); + asprintf(&s,"controllll: x=%g y=%g",id(x),id(y)); draw_text(x,y,s); free(s); } |