From c6b7a8b9b0d7f7a24affd1033d0d7e11cb84f1fa Mon Sep 17 00:00:00 2001 From: Mark Bernard Date: Fri, 10 Dec 2004 01:42:00 +0000 Subject: [PATCH] Change to ASCII. --- src/native/common/devil/extil.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/native/common/devil/extil.c b/src/native/common/devil/extil.c index 5e6dd613..5582a445 100644 --- a/src/native/common/devil/extil.c +++ b/src/native/common/devil/extil.c @@ -21,7 +21,6 @@ void *extil_GetProcAddress(const char *name) { printfDebug("Could not locate symbol %s\n", name); } - printf("\r\nget proc address %s %d", name, t); return t; #endif @@ -42,8 +41,7 @@ bool extil_Open(JNIEnv *env) { if (devILhandle == NULL) { // load the dynamic libraries for DevIL - printf("\r\nattempting to load F:\\Apps\\DevIL\\lib\\DevIL.dll"); - devILhandle = LoadLibrary("F:\\Apps\\DevIL\\lib\\DevIL.dll"); + devILhandle = LoadLibrary("DevIL.dll"); if (devILhandle == NULL) { printf("\r\nfailed to load DevIL"); result = false;