summaryrefslogtreecommitdiffstats
path: root/src/native/alfactory.c
diff options
context:
space:
mode:
authorathomas <[email protected]>2003-11-22 08:13:37 +0000
committerathomas <[email protected]>2003-11-22 08:13:37 +0000
commit83f203ef182647aa69c549b1e6b720f5af8739d0 (patch)
tree12e4120363e3b662f59eda5822f44e443981f4fb /src/native/alfactory.c
parent5c9159edaa04a772df6a43afb4892649d203d367 (diff)
updated navbar
git-svn-id: file:///home/mbien/NetBeansProjects/JOGAMP/joal-sync/git-svn/../svn-server-sync/joal/trunk@63 03bf7f67-59de-4072-a415-9a990d468a3f
Diffstat (limited to 'src/native/alfactory.c')
-rw-r--r--src/native/alfactory.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/native/alfactory.c b/src/native/alfactory.c
index f38f358..d989580 100644
--- a/src/native/alfactory.c
+++ b/src/native/alfactory.c
@@ -37,7 +37,11 @@
JNIEXPORT jboolean JNICALL Java_net_java_games_joal_ALFactory_init
(JNIEnv *env , jclass clazz, jobjectArray oalPaths) {
- return InitializeOpenAL(env,oalPaths);
+ printf("ALFactory.init - Native: Enter\n");
+ jboolean result = InitializeOpenAL(env,oalPaths);
+ printf("ALFactory.init - Native: Test 1 result = %i\n",result);
+ printf("ALFactory.init - Native: Exit\n");
+ return result;
}
JNIEXPORT jboolean JNICALL Java_net_java_games_joal_ALFactory_deinitialize