mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-03 13:31:27 +12:00
Fix dynamic_library::loaded
This commit is contained in:
parent
b29a89807e
commit
b94730fa95
1 changed files with 2 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
||||||
#include "stdafx.h"
|
#include "stdafx.h"
|
||||||
#include "dynamic_library.h"
|
#include "dynamic_library.h"
|
||||||
|
|
||||||
#ifdef _WIN32
|
#ifdef _WIN32
|
||||||
|
@ -50,7 +50,7 @@ namespace utils
|
||||||
|
|
||||||
bool dynamic_library::loaded() const
|
bool dynamic_library::loaded() const
|
||||||
{
|
{
|
||||||
return !m_handle;
|
return m_handle != nullptr;
|
||||||
}
|
}
|
||||||
|
|
||||||
dynamic_library::operator bool() const
|
dynamic_library::operator bool() const
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue