浏览代码

* Added U+25A0 (■) to the CP437 hack in the X11 driver.

tags/v0.99.beta14
Sam Hocevar sam 18 年前
父节点
当前提交
3de6dcf5ef
共有 1 个文件被更改,包括 9 次插入0 次删除
  1. +9
    -0
      caca/driver_x11.c

+ 9
- 0
caca/driver_x11.c 查看文件

@@ -337,6 +337,15 @@ static void x11_display(caca_display_t *dp)
dp->drv.p->font_width / 2,
dp->drv.p->font_height);
break;
case 0x000025a0: /* ■ */
XFillRectangle(dp->drv.p->dpy, dp->drv.p->pixmap,
dp->drv.p->gc,
x * dp->drv.p->font_width,
y * dp->drv.p->font_height
+ dp->drv.p->font_height / 4,
dp->drv.p->font_width,
dp->drv.p->font_height / 2);
break;
case 0x00002593: /* ▓ */
case 0x00002592: /* ▒ */
case 0x00002591: /* ░ */


正在加载...
取消
保存