remove exit1

pull/428/head
Alexander Medvednikov 2019-06-23 11:11:25 +02:00
parent e1e8a50a46
commit 5122b85728
1 changed files with 2 additions and 2 deletions

View File

@ -346,7 +346,7 @@ fn new_context_text(cfg Cfg, scale int) *GG {
}
if !os.file_exists(font_path) {
println('failed to load RobotoMono-Regular.ttf')
exit1()
exit(1)
}
# FT_Face face;
# if (FT_New_Face(ft, font_path.str, 0, &face))
@ -468,7 +468,7 @@ fn (ctx &GG) _draw_text(_x, _y int, utext ustring, cfg gx.TextCfg) {
firstc := utext.at(0)
println('drawtext "$utext.s" len=$utext.s.len ulen=$utext.len x=$_x firstc=$firstc')
if firstc != ' ' {
exit1()
exit(1)
}
}
*/