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
93f5836fd5
commit
66d9a0eea7
1 changed files with 9 additions and 3 deletions
|
@ -302,14 +302,20 @@ bool CSteamClient::init()
|
||||||
filename = "libsteam_api.so";
|
filename = "libsteam_api.so";
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// try to load library
|
// try to load library with absolute path
|
||||||
_Handle = NLMISC::nlLoadLibrary(Args.getProgramPath() + filename);
|
_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)
|
if (!_Handle)
|
||||||
{
|
{
|
||||||
nlwarning("Unable to load Steam client");
|
nlwarning("Unable to load Steam client");
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// load Steam functions
|
// load Steam functions
|
||||||
NL_LOAD_SYMBOL(SteamAPI_Init);
|
NL_LOAD_SYMBOL(SteamAPI_Init);
|
||||||
|
|
Loading…
Reference in a new issue