1
0
mirror of https://github.com/cc65/cc65.git synced 2024-12-21 20:29:24 +00:00

PutDecimal takes unsigned int as decimal parameter

git-svn-id: svn://svn.cc65.org/cc65/trunk@2350 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
izydorst 2003-08-17 14:54:15 +00:00
parent 03c049794f
commit aa87296c1f
3 changed files with 5 additions and 5 deletions

View File

@ -340,7 +340,7 @@ See <tt/ggraph.h/ for list of tokens that you can also place in the string - lik
<sect3>PutDecimal <sect3>PutDecimal
<p> <p>
<tt/void PutDecimal (char parameter, int value, char y, unsigned x)/ <tt/void PutDecimal (char parameter, unsigned value, char y, unsigned x)/
<p> <p>
This function converts <tt/value/ to its decimal representation and outputs it to the screen. This function converts <tt/value/ to its decimal representation and outputs it to the screen.
The <tt/parameter/ is the field width in pixels (range 1-31) and mode bits. Depending on them The <tt/parameter/ is the field width in pixels (range 1-31) and mode bits. Depending on them

View File

@ -37,7 +37,7 @@ char __fastcall__ TestPoint(struct pixel *myPixel);
void __fastcall__ PutChar(char character, char y, unsigned x); void __fastcall__ PutChar(char character, char y, unsigned x);
void __fastcall__ PutString(char *myString, char y, unsigned x); void __fastcall__ PutString(char *myString, char y, unsigned x);
void __fastcall__ PutDecimal(char style, int value, char y, unsigned x); void __fastcall__ PutDecimal(char style, unsigned value, char y, unsigned x);
char __fastcall__ GetCharWidth(char character); char __fastcall__ GetCharWidth(char character);
void __fastcall__ LoadCharSet(struct fontdesc *myFont); void __fastcall__ LoadCharSet(struct fontdesc *myFont);

View File

@ -1,10 +1,10 @@
; ;
; Maciej 'YTM/Alliance' Witkowiak ; Maciej 'YTM/Elysium' Witkowiak
; ;
; 30.10.99 ; 30.10.99, 17.8.2003
; void PutDecimal (char style, int value, char y, int x); ; void PutDecimal (char style, unsigned value, char y, int x);
.import popa, popax .import popa, popax
.import getintcharint .import getintcharint