diff options
Diffstat (limited to 'apps')
| -rw-r--r-- | apps/xracer/graphics.c | 1 | ||||
| -rw-r--r-- | apps/xracer/xracer.h | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/apps/xracer/graphics.c b/apps/xracer/graphics.c index e4d222d..eb31424 100644 --- a/apps/xracer/graphics.c +++ b/apps/xracer/graphics.c @@ -41,6 +41,7 @@ static inline void fill_poly(int x1, int y1, unsigned color) { SET_FOREGROUND(color); + FILL_TRI(x1, y1, x2, y2, x3, y3); FILL_TRI(x1, y1, x3, y3, x4, y4); } diff --git a/apps/xracer/xracer.h b/apps/xracer/xracer.h index 70d2677..21375e3 100644 --- a/apps/xracer/xracer.h +++ b/apps/xracer/xracer.h @@ -47,7 +47,7 @@ #define CURVES true /* this specifies the length of each road and border color in segments */ -#define RUMBLE_LENGTH 3 +#define RUMBLE_LENGTH 6 #define LANES 3 /* camera parameters */ |