diff options
author | Carsten Weisse <[email protected]> | 2007-05-06 20:52:54 +0000 |
---|---|---|
committer | Carsten Weisse <[email protected]> | 2007-05-06 20:52:54 +0000 |
commit | 2caafcb9dbbfc83b23eff01a80979427c5400eb6 (patch) | |
tree | 66338089c8a09e3ca951eab5431451f48b7f29c0 | |
parent | 0ac31e2cfe5f40d14f971bdd91582c852f5c56d9 (diff) |
print the the message if EAX fails
-rw-r--r-- | src/jake2/sound/joal/JOALSoundImpl.java | 1 |
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; } |