mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-18 03:38:01 +00:00
- 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:
@@ -67,7 +67,8 @@ public class WaveFileObuffer extends Obuffer
|
||||
|
||||
outWave = new WaveFile();
|
||||
|
||||
int rc = outWave.OpenForWrite (FileName,freq,(short)16,(short)channels);
|
||||
@SuppressWarnings("unused")
|
||||
int rc = outWave.OpenForWrite (FileName,freq,(short)16,(short)channels);
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -86,8 +87,10 @@ public class WaveFileObuffer extends Obuffer
|
||||
public void write_buffer(int val)
|
||||
{
|
||||
|
||||
int k = 0;
|
||||
int rc = 0;
|
||||
@SuppressWarnings("unused")
|
||||
int k = 0;
|
||||
@SuppressWarnings("unused")
|
||||
int rc = 0;
|
||||
|
||||
rc = outWave.WriteData(buffer, bufferp[0]);
|
||||
// REVIEW: handle RiffFile errors.
|
||||
|
||||
Reference in New Issue
Block a user