mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 17:19:44 -06:00
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:
@ -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;
|
||||
}
|
||||
|
@ -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);
|
||||
|
Reference in New Issue
Block a user