diff options
author | Kartik Agaram <vc@akkartik.com> | 2020-10-27 00:43:50 -0700 |
---|---|---|
committer | Kartik Agaram <vc@akkartik.com> | 2020-10-27 00:43:50 -0700 |
commit | 61dca1cec4df6b748508e2cd81b609180c6143e5 (patch) | |
tree | 846d6748d3fce437586004e15e581389fe5bb967 /apps/tile | |
parent | 332998546db0c08f57a7bd5138db038012ca9837 (diff) | |
download | mu-61dca1cec4df6b748508e2cd81b609180c6143e5.tar.gz |
7125 - tile: fade out values on the stack
Diffstat (limited to 'apps/tile')
-rw-r--r-- | apps/tile/environment.mu | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/apps/tile/environment.mu b/apps/tile/environment.mu index d006d245..e3a069f0 100644 --- a/apps/tile/environment.mu +++ b/apps/tile/environment.mu @@ -1430,10 +1430,7 @@ $render-value:body: { var len/edx: int <- length truncated-string start-color screen, 0xf2, 7 print-code-point screen, 0x275d # open-quote - reset-formatting screen - start-color screen, 0, 7 print-string screen, truncated-string - start-color screen, 0xf2, 7 compare len, orig-len { break-if-= @@ -1502,7 +1499,7 @@ $render-integer:body: { } fn render-array screen: (addr screen), _a: (addr array value) { - start-color screen, 0, 7 + start-color screen, 0xf2, 7 # don't surround in spaces print-grapheme screen, 0x5b # '[' var a/esi: (addr array value) <- copy _a |