mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-10 09:19:01 +00:00
Changed: Try to load Steam DLL without path if fails
This commit is contained in:
parent
dc52b3e24f
commit
5670c0cd2b
1 changed files with 9 additions and 3 deletions
|
@ -302,14 +302,20 @@ bool CSteamClient::init()
|
|||
filename = "libsteam_api.so";
|
||||
#endif
|
||||
|
||||
// try to load library
|
||||
// try to load library with absolute path
|
||||
_Handle = NLMISC::nlLoadLibrary(Args.getProgramPath() + filename);
|
||||
|
||||
if (!_Handle)
|
||||
{
|
||||
// try to load library with relative path (will search in system paths)
|
||||
_Handle = NLMISC::nlLoadLibrary(filename);
|
||||
|
||||
if (!_Handle)
|
||||
{
|
||||
nlwarning("Unable to load Steam client");
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
// load Steam functions
|
||||
NL_LOAD_SYMBOL(SteamAPI_Init);
|
||||
|
|
Loading…
Reference in a new issue