From ab556f299d0d7732c4cff37a3efc6d53d5ccd464 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Denis=20Nut=CC=A6iu?= Date: Mon, 25 Apr 2016 20:28:23 +0300 Subject: [PATCH] updating lab9 --- lab9/1.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lab9/1.c b/lab9/1.c index 11f1539..720fdc0 100644 --- a/lab9/1.c +++ b/lab9/1.c @@ -21,7 +21,7 @@ void draw_disks(FILE * file, int disks, int peg, int width, int y) { int x = 70 + ((peg - 1) * 100); fprintf(file, "\r\n", - x - width / 2 + 10, y, width, colors[random_color]); + x - width / 2 + 8, y, width, colors[random_color]); draw_disks(file, disks - 1, peg, width - width / 4, y - 21); }