mirror of
https://github.com/geode-sdk/geode.git
synced 2024-11-23 07:57:51 -05:00
fix userTriedToLoadDLLs return value
This commit is contained in:
parent
57fd2c25c2
commit
6e426babdd
2 changed files with 2 additions and 2 deletions
|
@ -33,7 +33,7 @@ void Loader::Impl::setupIPC() {
|
|||
}
|
||||
|
||||
bool Loader::Impl::userTriedToLoadDLLs() const {
|
||||
return std::nullopt;
|
||||
return false;
|
||||
}
|
||||
|
||||
#endif
|
||||
|
|
|
@ -65,7 +65,7 @@ void Loader::Impl::setupIPC() {
|
|||
}
|
||||
|
||||
bool Loader::Impl::userTriedToLoadDLLs() const {
|
||||
return std::nullopt;
|
||||
return false;
|
||||
}
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue