Index: src/gui.d ================================================================== --- src/gui.d +++ src/gui.d @@ -79,13 +79,13 @@ this.render['d'] = "☠"; this.render['L'] = "☒"; this.render['O'] = "☐"; foreach(c,tp; g.map.tr_target) { char d = g.map[tp]; - this.render[c] = [cast(dchar)('㋀'+d-'1')].to!string(); + this.render[c] = [cast(dchar)('☢'+d-'1')].to!string();/*㋀㏠*/ } - foreach(char c; '1'..':') this.render[c] = [cast(dchar)('㏠'+c-'1')].to!string(); + foreach(char c; '1'..':') this.render[c] = [cast(dchar)('☢'+c-'1')].to!string(); this.paint ~= (Control c, PaintEventArgs ev) { graphicContext.copyTo(ev.graphics, Rect(0,0,this.clientSize.width,this.clientSize.height)); }; }