浏览代码

More stupid changes...

master
父节点
当前提交
4ebe017c1b
共有 2 个文件被更改,包括 4 次插入3 次删除
  1. +2
    -2
      xlesses.c
  2. +2
    -1
      xlesses.h

+ 2
- 2
xlesses.c 查看文件

@@ -10,7 +10,7 @@
#define XLESSES_SOURCE

#include <xolatile/xlesses.h>
#include <stdio.h>
char * blesses_window_title = "xolatile";
int blesses_window_width = 640;
int blesses_window_height = 480;
@@ -177,7 +177,7 @@ void blesses_render_string (char * string, int x, int y, int foreground, int bac

do {
if (string [offset] == '\t') {
x += BLESSES_FONT_WIDTH * 3;
x += BLESSES_FONT_WIDTH * BLESSES_FONT_TABULATOR;
} else if (string [offset] == '\n') {
y += BLESSES_FONT_HEIGHT;
x *= 0;


+ 2
- 1
xlesses.h 查看文件

@@ -10,7 +10,6 @@
#define XLESSES_HEADER

#include <xolatile/xtandard.h>
#include <xolatile/xtandard.c>

#include <xcb/xcb.h>
#include <xcb/xcb_atom.h>
@@ -19,6 +18,8 @@
#define BLESSES_FONT_WIDTH (8)
#define BLESSES_FONT_HEIGHT (8)

#define BLESSES_FONT_TABULATOR (4)

#define BLESSES_SIGNAL_COUNT (144)

extern char * blesses_window_title;


正在加载...
取消
保存