From 998fa46062e53693368173a59c7dc4a2493e1b7a Mon Sep 17 00:00:00 2001 From: Quinn Dunki Date: Fri, 16 Jan 2015 20:29:56 -0800 Subject: [PATCH] Documentation polish --- Documentation.md | 6 +++--- ReadMe.md | 1 - 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/Documentation.md b/Documentation.md index 922b6ee..24b489a 100644 --- a/Documentation.md +++ b/Documentation.md @@ -661,7 +661,7 @@ All drawing routines (except *WGPrint*) operate in the global coordinate space ( ####WGClearScreen -Erases the screen, leaving the cursor at the bottom. +Clears the screen to black. Unlike Applesoft HOME, this version always clears to black, regardless of the INVERSE setting, and the global cursor is left at the bottom instead of the top.
AssemblyApplesoft
 X:		WGClearScreen
@@ -681,7 +681,7 @@ X:		WGDesktop
 
 
 ####WGPlot
-Plots a single character
+Plots a single character. For Applesoft, you supply the Apple ROM value of the character, and **all** character sets are supported with no mode changing required. This means you can directly plot inverse lowercase, or MouseText characters, for example. For a complete list of the values of every character in the Apple IIe Enchanced set, see Appendix B.
 
 
AssemblyApplesoft
 X:		WGPlot
@@ -691,7 +691,7 @@ Note: Character is plotted at the current global cursor position.
 
 &PLOT(X position
 	  Y position,
-	  Character)
+	  character)
 
diff --git a/ReadMe.md b/ReadMe.md index 12ead5d..aaf97c3 100644 --- a/ReadMe.md +++ b/ReadMe.md @@ -9,7 +9,6 @@ To Do: ------ - Make WGFillRect support 1 height and 1 width -- If called in inverse mode, clear screen clears inverse - Fix unclosed PRE tags in documentation - Delete view feature - Factor out mouse driver