aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCarsten Weisse <[email protected]>2007-05-06 20:52:54 +0000
committerCarsten Weisse <[email protected]>2007-05-06 20:52:54 +0000
commit2caafcb9dbbfc83b23eff01a80979427c5400eb6 (patch)
tree66338089c8a09e3ca951eab5431451f48b7f29c0
parent0ac31e2cfe5f40d14f971bdd91582c852f5c56d9 (diff)
print the the message if EAX fails
-rw-r--r--src/jake2/sound/joal/JOALSoundImpl.java1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/jake2/sound/joal/JOALSoundImpl.java b/src/jake2/sound/joal/JOALSoundImpl.java
index c1578cf..87d21bc 100644
--- a/src/jake2/sound/joal/JOALSoundImpl.java
+++ b/src/jake2/sound/joal/JOALSoundImpl.java
@@ -109,6 +109,7 @@ public final class JOALSoundImpl implements Sound {
eax = EAXFactory.getEAX();
Com.Printf("... using EAX2.0\n");
} catch (Throwable e) {
+ Com.Printf(e.getMessage());
Com.Printf("... EAX2.0 not initialized\n");
eax = null;
}