ARMv7Context used through multiple inheritance

Forgive me...
This commit is contained in:
Nekotekina 2015-06-21 04:04:03 +03:00
parent 6c4148a949
commit a7f77c27f7
9 changed files with 64 additions and 68 deletions

View file

@ -243,12 +243,11 @@ namespace sce_libc_func
::memset(dst.get_ptr(), value, size);
}
void _Assert(ARMv7Context& context, vm::cptr<char> text, vm::cptr<char> func)
void _Assert(vm::cptr<char> text, vm::cptr<char> func)
{
sceLibc.Error("_Assert(text=*0x%x, func=*0x%x)", text, func);
LOG_ERROR(TTY, "%s : %s\n", func.get_ptr(), text.get_ptr());
LOG_NOTICE(ARMv7, context.thread.RegsToString());
Emu.Pause();
}
}