Jit64Base: Const correctness for LogGeneratedX86

This commit is contained in:
Lioncash 2017-01-07 21:53:06 -05:00
parent 7a4464c3e0
commit 77756b44d5
2 changed files with 4 additions and 4 deletions

View File

@ -126,8 +126,8 @@ bool Jitx86Base::BackPatch(u32 emAddress, SContext* ctx)
return true;
}
void LogGeneratedX86(int size, PPCAnalyst::CodeBuffer* code_buffer, const u8* normalEntry,
JitBlock* b)
void LogGeneratedX86(int size, const PPCAnalyst::CodeBuffer* code_buffer, const u8* normalEntry,
const JitBlock* b)
{
for (int i = 0; i < size; i++)
{

View File

@ -47,5 +47,5 @@ public:
bool HandleFault(uintptr_t access_address, SContext* ctx) override;
};
void LogGeneratedX86(int size, PPCAnalyst::CodeBuffer* code_buffer, const u8* normalEntry,
JitBlock* b);
void LogGeneratedX86(int size, const PPCAnalyst::CodeBuffer* code_buffer, const u8* normalEntry,
const JitBlock* b);