mirror of
https://github.com/shadowfacts/lwjgl2-arm64.git
synced 2026-04-07 23:44:06 +00:00
Converted ALC pointers from int to long
This commit is contained in:
parent
815ce87e2e
commit
f5cf0ef2a4
4 changed files with 49 additions and 49 deletions
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue