mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-04 22:19:02 +00:00
Win32 fix & elf loading fix
Fixed compilation error for x86 version. Fixed issue with ELF loading.
This commit is contained in:
parent
01a274a1db
commit
c3d2cd344f
3 changed files with 8 additions and 4 deletions
|
|
@ -30,7 +30,11 @@ u32 vfsDevice::CmpPs3Path(const wxString& ps3_path)
|
|||
|
||||
for(u32 i=0; i<lim; ++i, ++ret)
|
||||
{
|
||||
if(m_ps3_path[i] != ps3_path[i]) break;
|
||||
if(m_ps3_path[i] != ps3_path[i])
|
||||
{
|
||||
ret = 0;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
return ret;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue