Update of /cvsroot/jake2/jake2/src/jake2/sound/joal
In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv19533/src/jake2/sound/joal
Modified Files:
JOALSoundImpl.java
Log Message:
use println
Index: JOALSoundImpl.java
===================================================================
RCS file: /cvsroot/jake2/jake2/src/jake2/sound/joal/JOALSoundImpl.java,v
retrieving revision 1.27
retrieving revision 1.28
diff -C2 -d -r1.27 -r1.28
*** JOALSoundImpl.java 6 May 2007 20:52:54 -0000 1.27
--- JOALSoundImpl.java 6 May 2007 20:55:02 -0000 1.28
***************
*** 97,104 ****
num_sfx = 0;
! Com.Printf("sound sampling rate: 44100Hz\n");
StopAllSounds();
! Com.Printf("------------------------------------\n");
return true;
}
--- 97,104 ----
num_sfx = 0;
! Com.Println("sound sampling rate: 44100Hz");
StopAllSounds();
! Com.Println("------------------------------------");
return true;
}
***************
*** 108,119 ****
try {
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;
}
} else {
! Com.Printf("... EAX2.0 not found\n");
eax = null;
}
--- 108,119 ----
try {
eax = EAXFactory.getEAX();
! Com.Println("... using EAX2.0");
} catch (Throwable e) {
! Com.Println(e.getMessage());
! Com.Println("... EAX2.0 not initialized");
eax = null;
}
} else {
! Com.Println("... EAX2.0 not found");
eax = null;
}
|