mirror of
https://github.com/cc65/cc65.git
synced 2025-01-25 11:30:06 +00:00
The scrcode macros lost the last argument in the recursive call.
git-svn-id: svn://svn.cc65.org/cc65/trunk@5966 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
parent
7dea2a98d9
commit
fa722e351a
@ -1,5 +1,5 @@
|
|||||||
; Convert characters to screen codes
|
; Convert characters to screen codes
|
||||||
|
|
||||||
; Helper macro that converts and outputs one character
|
; Helper macro that converts and outputs one character
|
||||||
.macro _scrcode char
|
.macro _scrcode char
|
||||||
.if (char >= 0) .and (char <= 31)
|
.if (char >= 0) .and (char <= 31)
|
||||||
@ -54,6 +54,6 @@
|
|||||||
.endif
|
.endif
|
||||||
|
|
||||||
; Call the macro recursively with the remaining args
|
; 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
|
.endmacro
|
||||||
|
|
||||||
|
@ -56,7 +56,7 @@
|
|||||||
.endif
|
.endif
|
||||||
|
|
||||||
; Call the macro recursively with the remaining args
|
; 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
|
.endmacro
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user