diff options
Diffstat (limited to 'include/text.inc')
-rw-r--r-- | include/text.inc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/text.inc b/include/text.inc index bb76453..b293fd5 100644 --- a/include/text.inc +++ b/include/text.inc @@ -1,5 +1,7 @@ INCLUDE "charmap.inc" +; Outputs each character of each argument as a 16-bit word +; (dw "string" does not do this: https://github.com/rednex/rgbds/issues/568) text: macro _arg = 1 rept _NARG @@ -7,7 +9,7 @@ _WS EQUS \1 _len = STRLEN("{_WS}") _i = 1 rept _len - dw STRSUB("{_WS}", _i, 1) + dw STRSUB("{_WS}", _i, 1) _i = _i + 1 endr PURGE _WS |