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:
parent
03c049794f
commit
aa87296c1f
@ -340,7 +340,7 @@ See <tt/ggraph.h/ for list of tokens that you can also place in the string - lik
|
||||
|
||||
<sect3>PutDecimal
|
||||
<p>
|
||||
<tt/void PutDecimal (char parameter, int value, char y, unsigned x)/
|
||||
<tt/void PutDecimal (char parameter, unsigned value, char y, unsigned x)/
|
||||
<p>
|
||||
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
|
||||
|
@ -37,7 +37,7 @@ char __fastcall__ TestPoint(struct pixel *myPixel);
|
||||
|
||||
void __fastcall__ PutChar(char character, 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);
|
||||
void __fastcall__ LoadCharSet(struct fontdesc *myFont);
|
||||
|
@ -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 getintcharint
|
||||
|
Loading…
Reference in New Issue
Block a user