diff options
author | ludwig <ludwig@edf5b092-35ff-0310-97b2-ce42778d08ea> | 2005-08-30 15:38:05 +0000 |
---|---|---|
committer | ludwig <ludwig@edf5b092-35ff-0310-97b2-ce42778d08ea> | 2005-08-30 15:38:05 +0000 |
commit | 3ac08ec908041c45cd697ac67b6b6eaafd2a3e33 (patch) | |
tree | 6b1696ee714d54d0f04abab1cc1a314150ca5244 /code/unix | |
parent | 7e071fe0719e42fee4507fd063059e203825c723 (diff) | |
download | ioquake3-aero-3ac08ec908041c45cd697ac67b6b6eaafd2a3e33.tar.gz ioquake3-aero-3ac08ec908041c45cd697ac67b6b6eaafd2a3e33.zip |
always try native dll first
git-svn-id: svn://svn.icculus.org/quake3/trunk@32 edf5b092-35ff-0310-97b2-ce42778d08ea
Diffstat (limited to 'code/unix')
-rw-r--r-- | code/unix/unix_main.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/code/unix/unix_main.c b/code/unix/unix_main.c index 4671f6d..e7676c6 100644 --- a/code/unix/unix_main.c +++ b/code/unix/unix_main.c @@ -775,7 +775,8 @@ void *Sys_LoadDll( const char *name, char *fqpath , if ( !libHandle ) { -#ifndef NDEBUG // bk001206 - in debug abort on failure +#if 0 // don't abort -- ln +//#ifndef NDEBUG // bk001206 - in debug abort on failure Com_Error ( ERR_FATAL, "Sys_LoadDll(%s) failed dlopen() completely!\n", name ); #else Com_Printf ( "Sys_LoadDll(%s) failed dlopen() completely!\n", name ); |