diff options
author | athomas <[email protected]> | 2003-11-19 01:07:26 +0000 |
---|---|---|
committer | athomas <[email protected]> | 2003-11-19 01:07:26 +0000 |
commit | 5c9159edaa04a772df6a43afb4892649d203d367 (patch) | |
tree | e7bfddd1b7691b92c43f0d1e073e5ca6298148ef /src | |
parent | e67ea5cc93a476bfbd334fb5def5df5ef4e22885 (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.java | 4 |
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; } |