not finding GtkModule.so is nonfatal

This commit is contained in:
Glenn Maynard
2004-01-12 10:38:40 +00:00
parent 3eb63e2f67
commit 3a812c2a93
@@ -18,7 +18,7 @@ try {
Handle = dlopen( DirOfExecutable + "/" + "GtkModule.so", RTLD_NOW );
if( Handle == NULL )
RageException::Throw("dlopen(): %s", dlerror());
RageException::ThrowNonfatal("dlopen(): %s", dlerror());
Module_Init = (INIT) dlsym(Handle, "Init");
if( !Module_Init )