From c1a1d885925421bc658efda960d52d60f0672b8a Mon Sep 17 00:00:00 2001 From: Yves Rizoud Date: Thu, 30 Apr 2009 19:24:28 +0000 Subject: [PATCH] Fixed "empy" / "empty" typo in some functions declarations in graph.h to match their fix of r761. (gcc 3.8 was now warning of the lack of advance declarations). Compiles to same executable as r761, no need to re-package the latest OSX version. git-svn-id: svn://pulkomandy.tk/GrafX2/trunk@762 416bcca6-2ee7-4201-b75f-2eb2f807beb1 --- graph.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/graph.h b/graph.h index acc0c4a3..a5c6525d 100644 --- a/graph.h +++ b/graph.h @@ -58,13 +58,13 @@ void Pixel_figure_preview_xor(word x_pos,word y_pos,byte color); void Pixel_figure_preview_xorback(word x_pos,word y_pos,byte color); void Pixel_figure_in_brush(word x_pos,word y_pos,byte color); -void Draw_empy_circle_permanent(short center_x,short center_y,short radius,byte color); -void Draw_empy_circle_preview (short center_x,short center_y,short radius,byte color); +void Draw_empty_circle_permanent(short center_x,short center_y,short radius,byte color); +void Draw_empty_circle_preview (short center_x,short center_y,short radius,byte color); void Hide_empty_circle_preview (short center_x,short center_y,short radius); void Draw_filled_circle (short center_x,short center_y,short radius,byte color); -void Draw_empy_ellipse_permanent(short center_x,short center_y,short horizontal_radius,short vertical_radius,byte color); -void Draw_empy_ellipse_preview (short center_x,short center_y,short horizontal_radius,short vertical_radius,byte color); +void Draw_empty_ellipse_permanent(short center_x,short center_y,short horizontal_radius,short vertical_radius,byte color); +void Draw_empty_ellipse_preview (short center_x,short center_y,short horizontal_radius,short vertical_radius,byte color); void Hide_empty_ellipse_preview (short center_x,short center_y,short horizontal_radius,short vertical_radius); void Draw_filled_ellipse (short center_x,short center_y,short horizontal_radius,short vertical_radius,byte color);