Very basic JIT results viewer.

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@254 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
hrydgard
2008-08-21 17:22:55 +00:00
parent 4e9b5a40fd
commit 5e4da92d42
8 changed files with 329 additions and 34 deletions

View File

@ -34,8 +34,8 @@ void HLE_OSPanic()
std::string Error;
GetStringVA(Error);
PanicAlert("PanicAlert: %s", Error.c_str());
LOG(OSREPORT,"(PC=%08x), PanicAlert: %s", LR, Error.c_str());
PanicAlert("OSPanic: %s", Error.c_str());
LOG(OSREPORT,"(PC=%08x), OSPanic: %s", LR, Error.c_str());
NPC = LR;
}

View File

@ -365,8 +365,6 @@ void UpdateTiming()
void Update()
{
// This stuff is not right - what if more than TicksPerLine ticks occur between
// calls to this function, say if we run with fairly inaccurate timing?
while ((CoreTiming::GetTicks() - LastTime) > (TicksPerFrame / LineCount))
{
LastTime += (TicksPerFrame / LineCount);