1
0
mirror of https://github.com/cc65/cc65.git synced 2024-12-23 04:30:10 +00:00

Changed 'Clear the screen' to 'Clear the drawpage'.

git-svn-id: svn://svn.cc65.org/cc65/trunk@4394 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
ol.sc 2009-10-27 21:20:06 +00:00
parent 33af076cfc
commit 1d9fc5f655
3 changed files with 4 additions and 4 deletions

View File

@ -4919,10 +4919,10 @@ tgi_circle(50, 40, 40);
<quote>
<descrip>
<tag/Function/Clear the screen
<tag/Function/Clear the drawpage
<tag/Header/<tt/<ref id="tgi.h" name="tgi.h">/
<tag/Declaration/<tt/void __fastcall__ tgi_clear (void);/
<tag/Description/Clear the screen
<tag/Description/Clear the drawpage
<tag/Limits/<itemize>
<item>The function is only available as fastcall function, so it may only
be used in presence of a prototype.

View File

@ -113,7 +113,7 @@ const char* __fastcall__ tgi_geterrormsg (unsigned char code);
/* Get an error message describing the error in code. */
void __fastcall__ tgi_clear (void);
/* Clear the screen. */
/* Clear the drawpage. */
unsigned __fastcall__ tgi_getpagecount (void);
/* Returns the number of screen pages available. */

View File

@ -2,7 +2,7 @@
; Ullrich von Bassewitz, 21.06.2002
;
; void __fastcall__ tgi_clear (void);
; /* Clear the screen */
; /* Clear the drawpage */
.include "tgi-kernel.inc"