From 0c56fda06013fbe2aa52fbcd9f7c03d57e16784d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicolas=20Hord=C3=A9?= Date: Wed, 11 Apr 2007 16:03:51 +0000 Subject: [PATCH] feat: passage en minuscule de la fonction "polyfill". --- lib/graphic.asm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/graphic.asm b/lib/graphic.asm index 37ebe84..43dc68e 100644 --- a/lib/graphic.asm +++ b/lib/graphic.asm @@ -15,7 +15,7 @@ header exe <"CE",1,0,0,offset exports,offset imports,,> exporting declare hline declare line -declare polyFill +declare polyfill ende importing @@ -115,7 +115,7 @@ endp absolute ymax equ 200 ; initialise un segment 2 -PROC polyFill FAR +PROC polyfill FAR ARG @pointer:word,@nbfaces:word,@color:word; LOCAL @@startx:word:200,@@endx:word:200,@@pas:dword,@@miny:word,@@maxy:word USES eax,ebx,ecx,edx,si,di,es @@ -226,5 +226,5 @@ PROC polyFill FAR cmp cx,[@@maxy] jna @@drawboucle ret -endp polyFill +endp polyfill