]> git.sur5r.net Git - cc65/commitdiff
Fixed GeOS -> GEOS and added newline to geossym2.inc. 592/head
authorMarco van den Heuvel <blackystardust68@yahoo.com>
Wed, 14 Feb 2018 18:22:10 +0000 (10:22 -0800)
committerMarco van den Heuvel <blackystardust68@yahoo.com>
Wed, 14 Feb 2018 18:22:10 +0000 (10:22 -0800)
libsrc/geos-cbm/geossym2.inc
samples/geos/geosver.c
samples/geos/geosverres.grc

index c756280a94f166dfa486f08543de826461d4389c..02a2fd44b1b79c71aebfc8746e3ef1ca27cbbb8e 100644 (file)
@@ -10,4 +10,5 @@ nationality             =       $c010
 sysFlgCopy              =       $c012
 c128Flag                =       $c013
 mp3Flag                 =       $c014
-dateCopy                =       $c018
\ No newline at end of file
+dateCopy                =       $c018
+
index 673b7e1f712caf2d08956379759edba564e62252..77a15ada706cf1d6cdd03191056b526438dd000e 100644 (file)
@@ -18,7 +18,7 @@ void main (void)
     gotoxy(0, 4);
     if (os == GEOS4) {
         machine = "plus4";
-        version = "GeOS v3.5";
+        version = "GEOS v3.5";
     } else {
         if ((os & GEOS128) == GEOS128) {
             machine = "c128";
@@ -27,13 +27,13 @@ void main (void)
         }
         os &= 0x7f;
         if (os == GEOS_V10) {
-            version = "GeOS v1.0";
+            version = "GEOS v1.0";
         } else if (os == GEOS_V11) {
-            version = "GeOS v1.1";
+            version = "GEOS v1.1";
         } else if (os == GEOS_V12) {
-            version = "GeOS v1.2";
+            version = "GEOS v1.2";
         } else if (os == GEOS_V20) {
-            version = "GeOS v2.0";
+            version = "GEOS v2.0";
         } else if (os == MEGAPATCH3) {
             version = "MegaPatch 3";
         } else if (os == GATEWAY) {
@@ -41,7 +41,7 @@ void main (void)
         } else if ((os & WHEELS) == WHEELS) {
             version = "Wheels";
         } else {
-            version = "Unknown GeOS version";
+            version = "Unknown GEOS version";
             good = 0;
         }
     }
index cac9ed698aa6241b0e2b5beda15b5decfbae6eb3..9a3d72a26582bba1a811452afbfe28602a7ccc13 100644 (file)
@@ -1,7 +1,7 @@
 
 ; this is the resource file for geosver.c, a GEOS application example
 
-HEADER APPLICATION "geosver" "GeOSver" "V1.0" {
+HEADER APPLICATION "geosver" "GEOSver" "V1.0" {
 dostype USR
 author "Marco van den Heuvel"
 info "This is a C prog compiled with cc65 and GEOSLib."