Change to ASCII.

This commit is contained in:
Mark Bernard 2004-12-10 01:42:00 +00:00
parent 3fc0fc9df4
commit c6b7a8b9b0
1 changed files with 1 additions and 3 deletions

View File

@ -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;