X-Git-Url: http://git.mutantstargoat.com/user/nuclear/?p=bootcensus;a=blobdiff_plain;f=src%2Fcensus%2Fcensus.c;h=7c490db173b53bb2f958ca89b8c5f1c6a41273ea;hp=7eea8d3de25be43d37b940bf73eebf6f93f0a0f4;hb=0a37e241149d011e038aceb3faac568b405f8ecd;hpb=a2f065772bcb7766859033d140980720ef824546 diff --git a/src/census/census.c b/src/census/census.c index 7eea8d3..7c490db 100644 --- a/src/census/census.c +++ b/src/census/census.c @@ -8,7 +8,7 @@ #include "panic.h" static void draw_disc(float x, float y, float rad, int sub); -static void draw_line(float x0, float y0, float x1, float y1, float rad); +static void draw_fatline(float x0, float y0, float x1, float y1, float rad); static int nverts = 256; static long start_time; @@ -60,7 +60,7 @@ void draw_census(void) float t1 = (float)(i + 1) * dt; eval_logo(a, t0); eval_logo(b, t1); - draw_line(a[0], a[1], b[0], b[1], 0.02); + draw_fatline(a[0], a[1], b[0], b[1], 0.02); } if(anim > 0.0f) { @@ -98,7 +98,7 @@ static void draw_disc(float x, float y, float rad, int sub) g3d_end(); } -static void draw_line(float x0, float y0, float x1, float y1, float rad) +static void draw_fatline(float x0, float y0, float x1, float y1, float rad) { float dx, dy, rx, ry, len;