]> git.sur5r.net Git - cc65/commitdiff
Changed 'Clear the screen' to 'Clear the drawpage'.
authorol.sc <ol.sc@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Tue, 27 Oct 2009 21:20:06 +0000 (21:20 +0000)
committerol.sc <ol.sc@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Tue, 27 Oct 2009 21:20:06 +0000 (21:20 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@4394 b7a2c559-68d2-44c3-8de9-860c34a00d81

doc/funcref.sgml
include/tgi.h
libsrc/tgi/tgi_clear.s

index 2a84f718535c14522fb61b63768832a60ee8d261..65d797baa7c0a3c0ea2e8c93c5ebe2c9a0eedcaf 100644 (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.
index 0ed472c5858d3ed575a81fe1d96e143bb498d122..941c8a7fe97bc6224c3f9d2fe74f006a5f3cee8a 100644 (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. */
index 65fe4b341df5fb328fe35dd5c2c7bcec895f1ef3..7c4bd0be930ec071d2a00bcc2bc5f504fa687393 100644 (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"