diff options
author | Rudy Bousset <rbousset@z3r8p1.le-101.fr> | 2020-02-13 19:22:15 +0100 |
---|---|---|
committer | Rudy Bousset <rbousset@z3r8p1.le-101.fr> | 2020-02-13 19:22:15 +0100 |
commit | fb98fd19ba9e27eb3a169a7599ce41fb0877b7a6 (patch) | |
tree | 2185933c9bde571819dfd480b48aa66459a30b2e /src/ft_draw_square.c | |
parent | Solid map is better (diff) | |
download | 42-cub3d-fb98fd19ba9e27eb3a169a7599ce41fb0877b7a6.tar.gz 42-cub3d-fb98fd19ba9e27eb3a169a7599ce41fb0877b7a6.tar.bz2 42-cub3d-fb98fd19ba9e27eb3a169a7599ce41fb0877b7a6.tar.xz 42-cub3d-fb98fd19ba9e27eb3a169a7599ce41fb0877b7a6.tar.zst 42-cub3d-fb98fd19ba9e27eb3a169a7599ce41fb0877b7a6.zip |
Better code structure
Diffstat (limited to '')
-rw-r--r-- | src/ft_draw_square.c (renamed from src/ft_drawsquare.c) | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ft_drawsquare.c b/src/ft_draw_square.c index dd7cce7..72cf904 100644 --- a/src/ft_drawsquare.c +++ b/src/ft_draw_square.c @@ -16,7 +16,7 @@ #include <stdint.h> void - ft_drawsquare(int a, int b, int rgb, t_cub *clist) + ft_draw_square(int a, int b, int rgb, t_cub *clist) { const uint16_t scale = clist->scale; int x; |