From 3762c3dd1eed62fe8513f6aa2b0a1af27bb69854 Mon Sep 17 00:00:00 2001 From: Anton Krotov Date: Fri, 14 Jan 2022 03:43:40 +0000 Subject: [PATCH] RasterWorks: rename function git-svn-id: svn://kolibrios.org@9631 a494cfbc-eb01-0410-851d-a64ba20cac60 --- .../libraries/fontRasterWorks(unicode)/RasterWorks.asm | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/programs/develop/libraries/fontRasterWorks(unicode)/RasterWorks.asm b/programs/develop/libraries/fontRasterWorks(unicode)/RasterWorks.asm index 2b8b43d434..bc94a63fb9 100644 --- a/programs/develop/libraries/fontRasterWorks(unicode)/RasterWorks.asm +++ b/programs/develop/libraries/fontRasterWorks(unicode)/RasterWorks.asm @@ -34,7 +34,8 @@ endp ; calculate amount of valid chars in UTF-8 string ; supports zero terminated string (set byteQuantity = -1) -proc countUTF8, string, byteQuantity +cntUTF_8: ;old function name +proc countUTF8Z, string, byteQuantity push esi mov edx,[byteQuantity] inc edx @@ -650,6 +651,7 @@ putOnPicture: align 4 @EXPORT: export drawText, 'drawText', \ - countUTF8, 'cntUTF-8', \ + cntUTF_8, 'cntUTF-8', \ ;old function name + countUTF8Z, 'countUTF8Z', \ charsFit, 'charsFit', \ stringWidth, 'strWidth'