Compilation fix

This commit is contained in:
Nekotekina 2014-11-02 02:45:07 +03:00
parent 3bdfc6b499
commit 61e6d8af96
2 changed files with 2 additions and 2 deletions

View File

@ -369,7 +369,7 @@ void ARMv7Interpreter::BLX(const u32 data, const ARMv7_encoding type)
case T1: case T1:
{ {
target = CPU.read_gpr((data >> 3) & 0xf); target = CPU.read_gpr((data >> 3) & 0xf);
newLR = ((CPU.PC + 2) - 2) | 1; // ??? newLR = (CPU.PC + 2) | 1; // ???
break; break;
} }
case T2: case T2:

View File

@ -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"); psv_log_base* module = new psv_log_base("sceLibc");