Update of /cvsroot/jake2/jake2/src/jake2/sound/joal
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12828/src/jake2/sound/joal
Modified Files:
JOALSoundImpl.java
Log Message:
fallback to dummy if the /dev/dsp is locked (linux)
Index: JOALSoundImpl.java
===================================================================
RCS file: /cvsroot/jake2/jake2/src/jake2/sound/joal/JOALSoundImpl.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** JOALSoundImpl.java 13 Jul 2004 11:20:28 -0000 1.2
--- JOALSoundImpl.java 4 Sep 2004 14:25:32 -0000 1.3
***************
*** 64,67 ****
--- 64,70 ----
Com.Printf(e.getMessage() + '\n');
return false;
+ } catch (Exception e) {
+ Com.DPrintf(e.getMessage() + '\n');
+ return false;
}
al.alGenBuffers(MAX_SFX, buffers);
|