• R/O
  • SSH
  • HTTPS

Commit

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

密猟オンラインクライアントプログラム JAVAベース


Commit MetaInfo

Revision13 (tree)
Time2016-02-01 01:38:46
Authormanjihq

Log Message

メインビュー表示の調整

Change Summary

Incremental Difference

--- trunk/src/hunton/HuntMainView.java (revision 12)
+++ trunk/src/hunton/HuntMainView.java (revision 13)
@@ -16,7 +16,7 @@
1616 static final int CANVAS_WIDTH = MAINVIEW_WIDTH + 8 + OVERVIEW_WIDTH * 16;
1717 static final int CANVAS_HEIGHT = MAINVIEW_HEIGHT;
1818 static final int ViewWidth[] = {
19- 480, 240, 120, 60, 30
19+ 350, 200, 80, 50, 30
2020 };
2121 static final int dirPattern[][] = {
2222 {1, 2, 3, 0},
@@ -243,6 +243,8 @@
243243 int i;
244244 int ey;
245245 calc_baserect(r, ViewWidth[y], ViewWidth[y]);
246+ offg.setColor(Color.darkGray);
247+ offg.fillRect(0, r.y, r.x, r.height);
246248 ey = (int) (r.y + r.height - 1);
247249 offg.setColor(Color.white);
248250 offg.drawLine(0, ey, MAINVIEW_WIDTH - 1, ey);
@@ -252,6 +254,9 @@
252254 }
253255 r.translate(ViewWidth[y], 0);
254256 }
257+ offg.setColor(Color.darkGray);
258+ offg.fillRect(r.x, r.y,
259+ MAINVIEW_WIDTH - r.x, r.height);
255260 }
256261 }
257262