mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-10 00:41:26 +12: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
|
@ -148,8 +148,8 @@ struct DMAC
|
||||||
u64 ls_offset;
|
u64 ls_offset;
|
||||||
u32 queue_pos;
|
u32 queue_pos;
|
||||||
u32 proxy_pos;
|
u32 proxy_pos;
|
||||||
u32 queue_lock;
|
long queue_lock;
|
||||||
u32 proxy_lock;
|
long proxy_lock;
|
||||||
|
|
||||||
u32 Cmd(u32 cmd, u32 tag, u32 lsa, u64 ea, u32 size)
|
u32 Cmd(u32 cmd, u32 tag, u32 lsa, u64 ea, u32 size)
|
||||||
{
|
{
|
||||||
|
|
|
@ -265,7 +265,7 @@ public:
|
||||||
private:
|
private:
|
||||||
u32 m_value[max_count];
|
u32 m_value[max_count];
|
||||||
u32 m_index;
|
u32 m_index;
|
||||||
u32 m_lock;
|
long m_lock;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
|
||||||
|
|
|
@ -30,7 +30,11 @@ u32 vfsDevice::CmpPs3Path(const wxString& ps3_path)
|
||||||
|
|
||||||
for(u32 i=0; i<lim; ++i, ++ret)
|
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;
|
return ret;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue