Update of /cvsroot/rails/18xx/rails/ui/swing/hexmap
In directory sfp-cvsdas-1.v30.ch3.sourceforge.com:/tmp/cvs-serv6653/rails/ui/swing/hexmap
Modified Files:
GUIHex.java
Log Message:
Fixed bonus token position on hex
Index: GUIHex.java
===================================================================
RCS file: /cvsroot/rails/18xx/rails/ui/swing/hexmap/GUIHex.java,v
retrieving revision 1.30
retrieving revision 1.31
diff -C2 -d -r1.30 -r1.31
*** GUIHex.java 20 Dec 2009 14:57:57 -0000 1.30
--- GUIHex.java 20 Dec 2009 15:03:11 -0000 1.31
***************
*** 441,451 ****
}
! private static int[] offStationTokenX = new int[] { -20, 0 }; // Unclear
! // why
! // x=-10,y=-10
! // puts it
! // at the
! // center.
! private static int[] offStationTokenY = new int[] { -20, 0 };
private void paintOffStationTokens(Graphics2D g2) {
--- 441,446 ----
}
! private static int[] offStationTokenX = new int[] { -11, 0 };
! private static int[] offStationTokenY = new int[] { -19, 0 };
private void paintOffStationTokens(Graphics2D g2) {
|