aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/java/net/java/games/joal/ALCImpl.java4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/java/net/java/games/joal/ALCImpl.java b/src/java/net/java/games/joal/ALCImpl.java
index a2ce1e8..cca3959 100644
--- a/src/java/net/java/games/joal/ALCImpl.java
+++ b/src/java/net/java/games/joal/ALCImpl.java
@@ -50,12 +50,14 @@ final class ALCImpl implements ALC {
}
public Device alcOpenDevice(String deviceName) {
+ System.out.println("Entering alcOpenDevice()");
Device result = null;
int pointer = openDeviceNative(deviceName);
if(pointer != 0) {
- System.out.println("Device Pointer = " + pointer);
+ System.out.println("In alcOpenDevice: Device Pointer = " + pointer);
result = new Device(pointer);
}
+ System.out.println("Exiting alcOpenDevice()");
return result;
}