View Single Post
  #4  
Old 07-29-2003, 02:09 PM
Kell
Fire Beetle
 
Join Date: Jul 2003
Posts: 1
Default

This also works, and is a bit more generic
Code:
export LD_LIBRARY_PATH=./
An alternative is adding two lines in common/EMuShareMem.cpp

After
Code:
        hDLL = LoadLibrary(EmuLibName);
Add
Code:
        if ( !hDLL) 
                hDLL = LoadLibrary("./" EmuLibName);
Reply With Quote