mirror of
https://github.com/RPCS3/rpcs3.git
synced 2024-11-23 03:02:53 +01:00
Compilation fix
This commit is contained in:
parent
3bdfc6b499
commit
61e6d8af96
@ -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…
Reference in New Issue
Block a user