]> git.sur5r.net Git - cc65/commitdiff
The scrcode macros lost the last argument in the recursive call.
authoruz <uz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Tue, 22 Jan 2013 21:28:26 +0000 (21:28 +0000)
committeruz <uz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Tue, 22 Jan 2013 21:28:26 +0000 (21:28 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@5966 b7a2c559-68d2-44c3-8de9-860c34a00d81

src/ca65/macpack/atari.mac
src/ca65/macpack/cbm.mac

index 981bd105f9e9a26679d8f53381f44f8cc73ae457..8e76888d77c1509303f199adce933ff2757c0b33 100644 (file)
@@ -1,5 +1,5 @@
 ; Convert characters to screen codes
-
+                                                              
 ; Helper macro that converts and outputs one character
 .macro _scrcode char
         .if (char >= 0) .and (char <= 31)
@@ -54,6 +54,6 @@
         .endif
 
         ; Call the macro recursively with the remaining args
-        scrcode arg2, arg3, arg4, arg5, arg6, arg7, arg8
+        scrcode arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9
 .endmacro
 
index 4685508d7ebe25fb4a37f6dd64710104435c5d2f..a6ec9f8dbacd18dfa13ae1627a0bfb45904a6bea 100644 (file)
@@ -56,7 +56,7 @@
         .endif
 
         ; Call the macro recursively with the remaining args
-        scrcode arg2, arg3, arg4, arg5, arg6, arg7, arg8
+        scrcode arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9
 .endmacro
 
-                        
+