mirror of https://github.com/PCSX2/pcsx2.git
Linux: Quick fix for the last revision.
git-svn-id: http://pcsx2.googlecode.com/svn/trunk@629 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
parent
377830b3a9
commit
19e56dc33e
|
@ -36,7 +36,7 @@ unsigned long DebuggerPC = 0;
|
||||||
u32 pc = dPC + i * 4;
|
u32 pc = dPC + i * 4;
|
||||||
/*if (DebugMode)
|
/*if (DebugMode)
|
||||||
{
|
{
|
||||||
mem = (u32*)PSXM(pc);
|
mem = (u32*)iopMemRead32(pc);
|
||||||
}
|
}
|
||||||
else*//*
|
else*//*
|
||||||
mem = (u32*)PSM(pc);
|
mem = (u32*)PSM(pc);
|
||||||
|
@ -246,7 +246,7 @@ void OnDumpC_Ok(GtkButton *button, gpointer user_data)
|
||||||
|
|
||||||
if (DebugMode)
|
if (DebugMode)
|
||||||
{
|
{
|
||||||
mem = (u32*)PSXM(addrf);
|
mem = (u32*)iopMemRead32(addrf);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
@ -317,7 +317,7 @@ void OnDumpR_Ok(GtkButton *button, gpointer user_data)
|
||||||
|
|
||||||
if (DebugMode)
|
if (DebugMode)
|
||||||
{
|
{
|
||||||
mem = (u32*)PSXM(addrf);
|
mem = (u32*)iopMemRead32(addrf);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|
|
@ -173,11 +173,11 @@ psxDispatcherReg_CallFn2:
|
||||||
|
|
||||||
psxDispatcherReg_recomp:
|
psxDispatcherReg_recomp:
|
||||||
// changed this to use push/pop instead (faster on cores) - air
|
// changed this to use push/pop instead (faster on cores) - air
|
||||||
push edx
|
push %edx
|
||||||
push ecx
|
push %ecx
|
||||||
call psxRecRecompile
|
call psxRecRecompile
|
||||||
pop ecx
|
pop %ecx
|
||||||
pop edx
|
pop %edx
|
||||||
|
|
||||||
mov %eax, dword ptr [%edx]
|
mov %eax, dword ptr [%edx]
|
||||||
//and %eax, 0x0fffffff
|
//and %eax, 0x0fffffff
|
||||||
|
|
Loading…
Reference in New Issue