diff options
author | Kartik Agaram <vc@akkartik.com> | 2020-11-15 20:24:41 -0800 |
---|---|---|
committer | Kartik Agaram <vc@akkartik.com> | 2020-11-15 20:24:41 -0800 |
commit | a8dfb603fdd72c826679546053b5b6bf1dc01179 (patch) | |
tree | 378068ea1ea4538652c167861024c64ea88f8414 /apps/tile | |
parent | 0879555213d6b24234d3ec11bbc98e210586ec16 (diff) | |
download | mu-a8dfb603fdd72c826679546053b5b6bf1dc01179.tar.gz |
7242
Diffstat (limited to 'apps/tile')
-rw-r--r-- | apps/tile/word.mu | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/tile/word.mu b/apps/tile/word.mu index 61c0646e..e01c8353 100644 --- a/apps/tile/word.mu +++ b/apps/tile/word.mu @@ -278,7 +278,7 @@ fn print-words-in-reverse screen: (addr screen), _words-ah: (addr handle word) { break-if-= # recurse var next-ah/ecx: (addr handle word) <- get words-a, next - print-words screen, next-ah + print-words-in-reverse screen, next-ah # print print-word screen, words-a print-string screen, " " |