Index: src/gui.d ================================================================== --- src/gui.d +++ src/gui.d @@ -60,11 +60,12 @@ this.setStyle(ControlStyles.OPAQUE, true); this.font = new Font("MS Gothic", cell-2, GraphicsUnit.PIXEL); this.backColor = Color(255,255,255); this.colors['#'] = this.colors['.'] = Color(255,191,127); - this.colors['*'] = Color(255,127,127); + this.colors['*'] = + this.colors['@'] = Color(255,127,127); this.colors['R'] = Color(128,128,0); this.colors['d'] = Color(255,0,0); this.colors['\\'] = this.colors['L'] = this.colors['O'] = Color(127,255,127); @@ -73,10 +74,11 @@ this.colors['!'] = Color(159,159,159); foreach(char c; 'A'..'J') this.colors[c] = Color(142,142,255); foreach(char c; '1'..':') this.colors[c] = Color(255,142,255); this.render['#'] = "■"; this.render['*'] = "✹"; + this.render['@'] = "❁"; this.render['.'] = "♒"; this.render['\\'] = "λ"; this.render['R'] = "☃"; this.render['d'] = "☠"; this.render['L'] = "☒";