From b7bf38482d08b30fe9f1910b89851d0e4be26b74 Mon Sep 17 00:00:00 2001 From: cuz Date: Wed, 29 Oct 2003 19:00:42 +0000 Subject: [PATCH] tgi_pagecount returns an unsigned, not void git-svn-id: svn://svn.cc65.org/cc65/trunk@2581 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- include/tgi.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/tgi.h b/include/tgi.h index e8580aaf7..43f0c2990 100644 --- a/include/tgi.h +++ b/include/tgi.h @@ -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); -- 2.39.5