Skip to content

Commit

Permalink
intergrate master
Browse files Browse the repository at this point in the history
  • Loading branch information
jagt committed Sep 14, 2013
1 parent dda74d0 commit f82454d
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
12 changes: 11 additions & 1 deletion src/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,18 @@ Brogue 可能是近些年 Roguelike 新作中最受欢迎的一个。这里是

基本汉化完毕,应该可以正常通关。中断和录像功能基本正常。

## 编译

由于 Brogue 本身使用了很多 C99 的功能,Windows 下几乎没有办法用 VS 编译。目前仅支持在 Windows 下使用 MinGW。(推荐 [TDM-GCC](http://tdm-gcc.tdragon.net/))
checkout build 分支,确定 make, gcc, windres 在你的 Path 上。

make -f Makefile.windows

Release 版本

make -f Makefile.windows RELEASE=TRUE

## TODO

* working makefiles
* mac builds
* update with 1.7.3
1 change: 1 addition & 0 deletions src/brogue/IO.c
Original file line number Diff line number Diff line change
Expand Up @@ -3012,6 +3012,7 @@ short wrapText(char *to, const char *sourceText, short width) {

// ! Since now we have long unicode lines, replacing spaces is not fesible
// ! so don't break on spaces now. just hard break anything longer than the width
i = 0;
w = currentLineLength = 0;
while (i < textLength) {
if (sourceText[i] == COLOR_ESCAPE) {
Expand Down

0 comments on commit f82454d

Please sign in to comment.