-
ive been trying out the compiler on dos and the drawing routines behavior doesnt make any sense.
Ive even tried simple like drawing 4 rectangles at |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
figured out finally. The arguments for the function is x1,y1,x2,y2. It doesnt help the header file only has has the types in the declarations so it a guessing game what things are. |
Beta Was this translation helpful? Give feedback.
figured out finally. The arguments for the function is x1,y1,x2,y2.
_ellipse( _GFILLINTERIOR, x, y, x+block_w, y+block_h );
It doesnt help the header file only has has the types in the declarations so it a guessing game what things are.
I figured out by finally finding where the function lives in the right C file.
Tried finding it in the wiki info but i havnt seen it. Doesnt seem very ideal.