mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-09 16:31:28 +12:00
vm::var improved, cleanup
Mostly vm::var initialization introduced. Added vm::make_var function.
This commit is contained in:
parent
cc02a147d3
commit
a974ee009e
116 changed files with 2763 additions and 3019 deletions
|
@ -20,7 +20,7 @@ bool vfsLocalDir::Open(const std::string& path)
|
|||
std::string name;
|
||||
fs::stat_t file_info;
|
||||
|
||||
for (bool is_ok = m_dir.get_first(name, file_info); is_ok; is_ok = m_dir.get_next(name, file_info))
|
||||
while (m_dir.read(name, file_info))
|
||||
{
|
||||
m_entries.emplace_back();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue