mirror of
https://github.com/RPCS3/rpcs3.git
synced 2024-11-17 17:11:23 +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
@ -148,8 +148,8 @@ struct DMAC
|
||||
u64 ls_offset;
|
||||
u32 queue_pos;
|
||||
u32 proxy_pos;
|
||||
u32 queue_lock;
|
||||
u32 proxy_lock;
|
||||
long queue_lock;
|
||||
long proxy_lock;
|
||||
|
||||
u32 Cmd(u32 cmd, u32 tag, u32 lsa, u64 ea, u32 size)
|
||||
{
|
||||
|
@ -265,7 +265,7 @@ public:
|
||||
private:
|
||||
u32 m_value[max_count];
|
||||
u32 m_index;
|
||||
u32 m_lock;
|
||||
long m_lock;
|
||||
|
||||
public:
|
||||
|
||||
|
@ -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…
Reference in New Issue
Block a user