浏览代码

Small refactoring

master
Bert 14 年前
父节点
当前提交
f52603b31a
共有 2 个文件被更改,包括 3 次插入4 次删除
  1. +1
    -1
      Makefile
  2. +2
    -3
      main.c

+ 1
- 1
Makefile 查看文件

@@ -1,6 +1,6 @@
all: sxiv

VERSION = git-20110606
VERSION = git-20110624

CC = gcc
DESTDIR =


+ 2
- 3
main.c 查看文件

@@ -144,9 +144,8 @@ void update_title() {
}

if (n >= TITLE_LEN) {
win_title[TITLE_LEN - 2] = '.';
win_title[TITLE_LEN - 3] = '.';
win_title[TITLE_LEN - 4] = '.';
for (n = 0; n < 3; n++)
win_title[TITLE_LEN - n - 2] = '.';
}

win_set_title(&win, win_title);


正在加载...
取消
保存