mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-20 03:25:16 +00:00
Fix directory opening on Linux systems
This commit is contained in:
parent
bcf4a6209e
commit
a6a4081894
1 changed files with 1 additions and 1 deletions
|
@ -856,7 +856,7 @@ bool fs::dir::open(const std::string& dirname)
|
|||
|
||||
m_dd = -1;
|
||||
#else
|
||||
const auto ptr = ::opendir(m_path.get());
|
||||
const auto ptr = ::opendir(dirname.c_str());
|
||||
if (!ptr)
|
||||
{
|
||||
return false;
|
||||
|
|
Loading…
Add table
Reference in a new issue