summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xmake/joal-alc-impl-CustomJavaCode.java4
-rwxr-xr-xmake/joal-alc.cfg1
2 files changed, 2 insertions, 3 deletions
diff --git a/make/joal-alc-impl-CustomJavaCode.java b/make/joal-alc-impl-CustomJavaCode.java
index a9ec6ee..c6f8e92 100755
--- a/make/joal-alc-impl-CustomJavaCode.java
+++ b/make/joal-alc-impl-CustomJavaCode.java
@@ -3,7 +3,7 @@ public java.lang.String alcGetString(ALCdevice device, int param) {
throw new ALException("Call alcGetDeviceSpecifiers to fetch all available device names");
}
- ByteBuffer buf = alcGetStringImpl(device, param);
+ java.nio.ByteBuffer buf = alcGetStringImpl(device, param);
if (buf == null) {
return null;
}
@@ -29,7 +29,7 @@ public java.lang.String[] alcGetCaptureDeviceSpecifiers() {
}
private java.lang.String[] getDoubleNullTerminatedString(int which) {
- ByteBuffer buf = alcGetStringImpl(null, which);
+ java.nio.ByteBuffer buf = alcGetStringImpl(null, which);
if (buf == null) {
return null;
}
diff --git a/make/joal-alc.cfg b/make/joal-alc.cfg
index 8bb623c..21f7449 100755
--- a/make/joal-alc.cfg
+++ b/make/joal-alc.cfg
@@ -13,7 +13,6 @@ GetProcAddressTableExpr ALProcAddressLookup.getALCProcAddressTable()
ProcAddressNameExpr LP $UPPERCASE({0})
Import java.io.UnsupportedEncodingException
-Import java.nio.*
Import java.util.*
Import net.java.games.joal.*
Import net.java.games.joal.impl.*