Fixed SWCH for real. Fix repeating spark while creating it. Adjustable x and y for brushes.

This commit is contained in:
Philip
2010-11-19 18:01:56 -05:00
parent 435f71c781
commit c1182db42d
5 changed files with 136 additions and 74 deletions

View File

@@ -137,7 +137,7 @@ pixel *prerender_save(void *save, int size, int *width, int *height);
int render_thumb(void *thumb, int size, int bzip2, pixel *vid_buf, int px, int py, int scl);
void render_cursor(pixel *vid, int x, int y, int t, int r);
void render_cursor(pixel *vid, int x, int y, int t, float rx, float ry);
void sdl_open(void);

View File

@@ -540,8 +540,8 @@ void create_box(int x1, int y1, int x2, int y2, int c);
int flood_parts(int x, int y, int c, int cm, int bm);
int create_parts(int x, int y, int r, int c);
int create_parts(int x, int y, float rx, float ry, int c);
void create_line(int x1, int y1, int x2, int y2, int r, int c);
void create_line(int x1, int y1, int x2, int y2, float rx, float ry, int c);
#endif