mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-10-02 14:19:22 +00:00
Merge pull request #1520 from tambry/shhh_penguin_is_ok
Fix directory opening on Linux systems (Fixes #1494)
This commit is contained in:
commit
06cbe4a0bc
1 changed files with 1 additions and 1 deletions
|
@ -856,7 +856,7 @@ bool fs::dir::open(const std::string& dirname)
|
||||||
|
|
||||||
m_dd = -1;
|
m_dd = -1;
|
||||||
#else
|
#else
|
||||||
const auto ptr = ::opendir(m_path.get());
|
const auto ptr = ::opendir(dirname.c_str());
|
||||||
if (!ptr)
|
if (!ptr)
|
||||||
{
|
{
|
||||||
return false;
|
return false;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue