]> Shamusworld >> Repos - rmac/blobdiff - rmac.c
Fixed word reversed fixup problem.
[rmac] / rmac.c
diff --git a/rmac.c b/rmac.c
index c47adf2b2997cd60fe8e519cab9f3f1b516cdc3c..4506a95b517616d02d86b878fccab0877bff6605 100644 (file)
--- a/rmac.c
+++ b/rmac.c
@@ -105,9 +105,9 @@ int kmatch(char * p, int * base, int * check, int * tab, int * accept)
 //
 void autoeven(int sect)
 {
 //
 void autoeven(int sect)
 {
-       switchsect(sect);
+       SwitchSection(sect);
        d_even();
        d_even();
-       savsect();
+       SaveSection();
 }
 
 
 }
 
 
@@ -470,11 +470,11 @@ int process(int argc, char ** argv)
        // o  determine name of object file:
        //    -  "foo.o" for linkable output;
        //    -  "foo.prg" for GEMDOS executable (-p flag).
        // o  determine name of object file:
        //    -  "foo.o" for linkable output;
        //    -  "foo.prg" for GEMDOS executable (-p flag).
-       savsect();
+       SaveSection();
 
        for(i=TEXT; i<=BSS; i<<=1)
        {
 
        for(i=TEXT; i<=BSS; i<<=1)
        {
-               switchsect(i);
+               SwitchSection(i);
 
                switch(segpadsize)
                {
 
                switch(segpadsize)
                {
@@ -485,7 +485,7 @@ int process(int argc, char ** argv)
                case 32: d_qphrase(); break;
                }
 
                case 32: d_qphrase(); break;
                }
 
-               savsect();
+               SaveSection();
        }
 
        if (objfname == NULL)
        }
 
        if (objfname == NULL)