Fixed formatting

This commit is contained in:
Caspian Rychlik-Prince 2003-08-02 10:57:05 +00:00
parent 81b9e0795c
commit 761a1cece3
1 changed files with 40 additions and 39 deletions

View File

@ -75,7 +75,8 @@ public class AL extends CoreAL {
* @param contextRefresh Refresh intervalls, in units of Hz.
* @param contextSynchronized Flag, indicating a synchronous context.*
*/
public static void create(String deviceArguments, int contextFrequency, int contextRefresh, boolean contextSynchronized) throws OpenALException {
public static void create(String deviceArguments, int contextFrequency, int contextRefresh, boolean contextSynchronized)
throws OpenALException {
AL.deviceArguments = deviceArguments;
AL.contextFrequency = contextFrequency;
AL.contextRefresh = contextRefresh;
@ -84,7 +85,6 @@ public class AL extends CoreAL {
create();
}
/**
* Creates an OpenAL instance. The empty create will cause OpenAL to
* open the default device, and create a context using default values.
@ -107,6 +107,7 @@ public class AL extends CoreAL {
}
ALC.alcMakeContextCurrent(context.context);
}
/**