From ae67a4f9c8ab49fe26261c0c05d790c0faa807b1 Mon Sep 17 00:00:00 2001 From: bernie Date: Wed, 13 Sep 2006 13:58:55 +0000 Subject: [PATCH] text_moveTo(): Swap parameters. git-svn-id: https://src.develer.com/svnoss/bertos/trunk@680 38d2e660-2303-0410-9eaa-f027e97ec537 --- gfx/text.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/gfx/text.h b/gfx/text.h index 3726913a..9d1fd4d6 100755 --- a/gfx/text.h +++ b/gfx/text.h @@ -15,6 +15,9 @@ /*#* *#* $Log$ + *#* Revision 1.8 2006/09/13 13:58:55 bernie + *#* text_moveTo(): Swap parameters. + *#* *#* Revision 1.7 2006/07/19 12:56:26 bernie *#* Convert to new Doxygen style. *#* @@ -117,7 +120,7 @@ struct Bitmap; /* Low-level text functions (mware/text.c) */ -void text_moveTo(struct Bitmap *bm, int col, int row); +void text_moveTo(struct Bitmap *bm, int row, int col); void text_setCoord(struct Bitmap *bm, int x, int y); int text_putchar(char c, struct Bitmap *bm); uint8_t text_style(struct Bitmap *bm, uint8_t flags, uint8_t mask); -- 2.25.1