Converted ALC pointers from int to long

This commit is contained in:
Elias Naur 2005-04-12 10:30:05 +00:00
parent 815ce87e2e
commit f5cf0ef2a4
4 changed files with 49 additions and 49 deletions

View file

@ -46,14 +46,14 @@ import org.lwjgl.BufferUtils;
final class ALCcontext {
/** address of actual context */
final int context;
final long context;
/**
* Creates a new instance of ALCcontext
*
* @param context address of actual context
*/
ALCcontext(int context) {
ALCcontext(long context) {
this.context = context;
}