fix: no more using alutInit or alutExit

This commit is contained in:
Brian Matzon 2002-12-14 12:44:17 +00:00
parent 926e1dd507
commit f84e2b5346
5 changed files with 8 additions and 18 deletions

View file

@ -67,8 +67,8 @@ public class ALUTTest extends BasicTest {
int lastError;
//initialize AL, using ALUT
alut.init(args);
//initialize AL
alInitialize();
//create 1 buffer and 1 source
ByteBuffer buffers = ByteBuffer.allocateDirect(4);
@ -149,8 +149,8 @@ public class ALUTTest extends BasicTest {
exit(lastError);
}
//shutdown using ALUT
alut.exit();
//shutdown
alExit();
}
/**