]> git.sur5r.net Git - cc65/blobdiff - src/da65/handler.c
Added new options and info file attribute to set the columns where the
[cc65] / src / da65 / handler.c
index 7ae97f7f734f17ae0630525edd48d2de36a985a5..f7412ff7780e0de56412bc2f858c16bee778f8b9 100644 (file)
@@ -59,7 +59,7 @@
 static void Mnemonic (const char* M)
 /* Indent and output a mnemonic */
 {
-    Indent (MIndent);
+    Indent (MCol);
     Output ("%s", M);
 }
 
@@ -79,7 +79,7 @@ static void OneLine (const OpcDesc* D, const char* Arg, ...)
     va_start (ap, Arg);
     xvsprintf (Buf, sizeof (Buf), Arg, ap);
     va_end (ap);
-    Indent (AIndent);
+    Indent (ACol);
     Output (Buf);
 
     /* Add the code stuff as comment */