aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCarsten Weisse <[email protected]>2007-05-06 20:55:02 +0000
committerCarsten Weisse <[email protected]>2007-05-06 20:55:02 +0000
commitff26d915af74eb00566803e5c59c29d6776267a9 (patch)
tree64e5d075bdff7444619c0fc0dc6891170e071a34
parent2caafcb9dbbfc83b23eff01a80979427c5400eb6 (diff)
use println
-rw-r--r--src/jake2/sound/joal/JOALSoundImpl.java12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/jake2/sound/joal/JOALSoundImpl.java b/src/jake2/sound/joal/JOALSoundImpl.java
index 87d21bc..d515633 100644
--- a/src/jake2/sound/joal/JOALSoundImpl.java
+++ b/src/jake2/sound/joal/JOALSoundImpl.java
@@ -96,10 +96,10 @@ public final class JOALSoundImpl implements Sound {
num_sfx = 0;
- Com.Printf("sound sampling rate: 44100Hz\n");
+ Com.Println("sound sampling rate: 44100Hz");
StopAllSounds();
- Com.Printf("------------------------------------\n");
+ Com.Println("------------------------------------");
return true;
}
@@ -107,14 +107,14 @@ public final class JOALSoundImpl implements Sound {
if (al.alIsExtensionPresent("EAX2.0")) {
try {
eax = EAXFactory.getEAX();
- Com.Printf("... using EAX2.0\n");
+ Com.Println("... using EAX2.0");
} catch (Throwable e) {
- Com.Printf(e.getMessage());
- Com.Printf("... EAX2.0 not initialized\n");
+ Com.Println(e.getMessage());
+ Com.Println("... EAX2.0 not initialized");
eax = null;
}
} else {
- Com.Printf("... EAX2.0 not found\n");
+ Com.Println("... EAX2.0 not found");
eax = null;
}
}