- Fixed Dakmor Ghoul CIP text.

- Added Chronatog, Kismet, Frozen AEther, Loxodon Gatekeeper, Gush.
- Removed warnings (mostly just by adding a @SuppressWarnings("unused"); ) from the JLayer libs.
- Removed some old commented out code of cards that have been replaced by keywords.
- Boreal Centaur and Knight of the Skyward Eye abilities can only be used once per turn now.
This commit is contained in:
jendave
2011-08-06 03:08:57 +00:00
parent fc8b7bf9f8
commit df559b9abf
29 changed files with 292 additions and 1227 deletions

View File

@@ -49,14 +49,19 @@ final class huffcodetab
private char tablename0 = ' '; /* string, containing table_description */
private char tablename1 = ' '; /* string, containing table_description */
@SuppressWarnings("unused")
private char tablename2 = ' '; /* string, containing table_description */
private int xlen; /* max. x-index+ */
private int ylen; /* max. y-index+ */
private int linbits; /* number of linbits */
@SuppressWarnings("unused")
private int linmax; /* max number to be stored in linbits */
@SuppressWarnings("unused")
private int ref; /* a positive value indicates a reference */
@SuppressWarnings("unused")
private int[] table=null; /* pointer to array[xlen][ylen] */
@SuppressWarnings("unused")
private int[] hlen=null; /* pointer to array[xlen][ylen] */
private int[][] val=null; /* decoder tree */
private int treelen; /* length of decoder tree */
@@ -417,6 +422,7 @@ final class huffcodetab
public static huffcodetab[] ht = null; /* Simulate extern struct */
@SuppressWarnings("unused")
private static int[] bitbuf = new int[32];
/**
@@ -453,6 +459,7 @@ final class huffcodetab
// 32,33 count1-tables
int dmask = 1 << ((4 * 8) - 1);
@SuppressWarnings("unused")
int hs = 4 * 8;
int level;
int point = 0;