mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-13 02:08:49 +12:00
fixes to get llvm to compile (excepti for utils.cpp, that'll get fixed
later) Eradicate the Array almost everywhere, some usages like Stack still remains
This commit is contained in:
parent
d65968b41d
commit
25c3aa8e19
92 changed files with 931 additions and 1305 deletions
|
@ -24,7 +24,8 @@ bool vfsLocalDir::Open(const std::string& path)
|
|||
{
|
||||
wxString dir_path = fmt::FromUTF8(path) + name;
|
||||
|
||||
DirEntryInfo& info = m_entries[m_entries.Move(new DirEntryInfo())];
|
||||
m_entries.emplace_back();
|
||||
DirEntryInfo& info = m_entries.back();
|
||||
info.name = fmt::ToUTF8(name);
|
||||
|
||||
info.flags |= dir.Exists(dir_path) ? DirEntry_TypeDir : DirEntry_TypeFile;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue