mirror of
https://github.com/RPCS3/rpcs3.git
synced 2024-11-16 23:17:29 +00:00
commit
a2157a5365
2
asmjit
2
asmjit
@ -1 +1 @@
|
||||
Subproject commit 316812daf0d734f1e3dc3abb05785737513274f0
|
||||
Subproject commit b76922fde96232030be302b3bdd9673e9bcec568
|
@ -96,12 +96,12 @@
|
||||
</ImportGroup>
|
||||
<PropertyGroup Label="UserMacros" />
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
<OutDir>.\libs\$(Configuration)_x86\</OutDir>
|
||||
<OutDir>.\libs\$(Configuration)\</OutDir>
|
||||
<IntDir>
|
||||
</IntDir>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||
<OutDir>.\libs\$(Configuration)_x86\</OutDir>
|
||||
<OutDir>.\libs\$(Configuration)\</OutDir>
|
||||
<IntDir>
|
||||
</IntDir>
|
||||
</PropertyGroup>
|
||||
|
@ -393,7 +393,7 @@ public:
|
||||
}
|
||||
}
|
||||
|
||||
Mem XmmConst(const __m128i data)
|
||||
Mem XmmConst(const __m128i& data)
|
||||
{
|
||||
for (u32 i = 0; i < rec.imm_table.size(); i++)
|
||||
{
|
||||
@ -407,7 +407,7 @@ public:
|
||||
return oword_ptr(*imm_var, shift);
|
||||
}
|
||||
|
||||
Mem XmmConst(const __m128 data)
|
||||
Mem XmmConst(const __m128& data)
|
||||
{
|
||||
return XmmConst((__m128i&)data);
|
||||
}
|
||||
|
@ -152,8 +152,6 @@ void fsAioRead(u32 fd, mem_ptr_t<CellFsAio> aio, int xid, mem_func_ptr_t<void (*
|
||||
vfsFileBase* orig_file;
|
||||
if(!sys_fs.CheckId(fd, orig_file)) return;
|
||||
|
||||
std::string path = orig_file->GetPath();
|
||||
|
||||
u64 nbytes = aio->size;
|
||||
u32 buf_addr = aio->buf_addr;
|
||||
|
||||
@ -207,7 +205,7 @@ fin:
|
||||
file.Seek(old_pos);
|
||||
|
||||
ConLog.Warning("*** fsAioRead(fd=%d, offset=0x%llx, buf_addr=0x%x, size=0x%x, error=0x%x, res=0x%x, xid=0x%x [%s])",
|
||||
fd, (u64)aio->offset, buf_addr, (u64)aio->size, error, res, xid, path.c_str());
|
||||
fd, (u64)aio->offset, buf_addr, (u64)aio->size, error, res, xid, orig_file->GetPath().c_str());
|
||||
|
||||
if (func) // start callback thread
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user