aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorathomas <[email protected]>2003-11-19 01:07:26 +0000
committerathomas <[email protected]>2003-11-19 01:07:26 +0000
commit5c9159edaa04a772df6a43afb4892649d203d367 (patch)
treee7bfddd1b7691b92c43f0d1e073e5ca6298148ef /src
parente67ea5cc93a476bfbd334fb5def5df5ef4e22885 (diff)
Clarified the instrumentation a little more.
git-svn-id: file:///home/mbien/NetBeansProjects/JOGAMP/joal-sync/git-svn/../svn-server-sync/joal/trunk@62 03bf7f67-59de-4072-a415-9a990d468a3f
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;
}