mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-20 11:36:13 +00:00
Compilation fix
This commit is contained in:
parent
3bdfc6b499
commit
61e6d8af96
2 changed files with 2 additions and 2 deletions
|
@ -369,7 +369,7 @@ void ARMv7Interpreter::BLX(const u32 data, const ARMv7_encoding type)
|
|||
case T1:
|
||||
{
|
||||
target = CPU.read_gpr((data >> 3) & 0xf);
|
||||
newLR = ((CPU.PC + 2) - 2) | 1; // ???
|
||||
newLR = (CPU.PC + 2) | 1; // ???
|
||||
break;
|
||||
}
|
||||
case T2:
|
||||
|
|
|
@ -26,7 +26,7 @@ namespace sce_libc_func
|
|||
}
|
||||
}
|
||||
|
||||
psv_log_base sceLibc = []() -> psv_log_base&
|
||||
psv_log_base sceLibc = []()
|
||||
{
|
||||
psv_log_base* module = new psv_log_base("sceLibc");
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue