mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-04 14:08:37 +00:00
Draft socketselect, other minor fixes
This commit is contained in:
parent
82733e1943
commit
6beec80b60
6 changed files with 129 additions and 75 deletions
|
|
@ -22,7 +22,11 @@ bool TRPLoader::Install(std::string dest, bool show)
|
|||
if (!dest.empty() && dest.back() != '/')
|
||||
dest += '/';
|
||||
|
||||
Emu.GetVFS().CreateDir(dest);
|
||||
if (!Emu.GetVFS().ExistsDir(dest))
|
||||
{
|
||||
Emu.GetVFS().CreateDir(dest);
|
||||
}
|
||||
|
||||
for (const TRPEntry& entry : m_entries)
|
||||
{
|
||||
char* buffer = new char [(u32)entry.size];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue