Skip to content

Commit

Permalink
Update ExceptionForm.java
Browse files Browse the repository at this point in the history
  • Loading branch information
SteveNotSet authored Mar 27, 2024
1 parent 8180bd1 commit 3b7bf1e
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,13 @@ public void render() {

if (exception != null) {
GlHelper.drawShadowString(20, 20, GlHelper.getWidth() - 40, LINE_HEIGHT, FONT_SIZE,
"There was an error! Please report.",
"发生错误!请报告管理员。",
0xFFFF0000, false, true);
}
GlHelper.drawShadowString(GlHelper.getWidth() - 240 - 20, 20, 240, 16, 16, "Arrow Keys to Scroll", 0xffdddddd, false, true);
GlHelper.drawShadowString(GlHelper.getWidth() - 240 - 20, 20, 240, 16, 16, "用方向键滚动查看", 0xffdddddd, false, true);
int fontColor = System.currentTimeMillis() % 400 >= 200 ? 0xffffff00 : 0xffdddddd;
GlHelper.drawShadowString(20, 20 + LINE_HEIGHT, GlHelper.getWidth() - 40, LINE_HEIGHT, FONT_SIZE,
"Press ENTER to continue without the resource pack.",
" ENTER 以在不加载资源包的情况下继续启动。",
fontColor, false, true);

final int LOG_FONT_SIZE = 16;
Expand Down

0 comments on commit 3b7bf1e

Please sign in to comment.