shows "DC" for Dual Core else "SC" for Single Core in the caption bar / Status bar
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@1167 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
b0b6a64567
commit
09e168beac
|
@ -513,9 +513,10 @@ void Callback_VideoCopiedToXFB()
|
|||
|
||||
float t = (float)(Timer.GetTimeDifference()) / 1000.f;
|
||||
char temp[256];
|
||||
sprintf(temp, "FPS:%8.2f - Core: %s - Speed: %i MHz [Real: %i + IdleSkip: %i] / %i MHz",
|
||||
sprintf(temp, "FPS:%8.2f - Core: %s | %s - Speed: %i MHz [Real: %i + IdleSkip: %i] / %i MHz",
|
||||
(float)frames / t,
|
||||
g_CoreStartupParameter.bUseJIT ? "JIT" : "Interpreter",
|
||||
g_CoreStartupParameter.bUseDualCore ? "DC" : "SC",
|
||||
(int)(diff),
|
||||
(int)(diff-idleDiff),
|
||||
(int)(idleDiff),
|
||||
|
|
Loading…
Reference in New Issue