about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2020-10-27 00:43:50 -0700
committerKartik Agaram <vc@akkartik.com>2020-10-27 00:43:50 -0700
commit61dca1cec4df6b748508e2cd81b609180c6143e5 (patch)
tree846d6748d3fce437586004e15e581389fe5bb967
parent332998546db0c08f57a7bd5138db038012ca9837 (diff)
downloadmu-61dca1cec4df6b748508e2cd81b609180c6143e5.tar.gz
7125 - tile: fade out values on the stack
-rw-r--r--apps/tile/environment.mu5
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