1
0
mirror of https://github.com/cc65/cc65.git synced 2024-12-24 11:31:31 +00:00

tgi_pagecount returns an unsigned, not void

git-svn-id: svn://svn.cc65.org/cc65/trunk@2581 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz 2003-10-29 19:00:42 +00:00
parent 64c3e5fd73
commit b7bf38482d

View File

@ -107,7 +107,7 @@ unsigned char __fastcall__ tgi_geterror (void);
void __fastcall__ tgi_clear (void);
/* Clear the screen. */
void __fastcall__ tgi_getpagecount (void);
unsigned __fastcall__ tgi_getpagecount (void);
/* Returns the number of screen pages available. */
void __fastcall__ tgi_setviewpage (unsigned char page);