win32: add arm9 load average to ctrl+prtscr

This commit is contained in:
zeromus 2010-03-31 21:31:30 +00:00
parent cf0cde6108
commit 65ab7e85c5
1 changed files with 1 additions and 1 deletions

View File

@ -3446,7 +3446,7 @@ void ScreenshotToClipboard()
memcpy(&str[titlelen+1], &MMU.CART_ROM[12], 6); str[titlelen+1+6] = '\0';
TextOut(hMemDC, 8, 384 + 14 * (twolinever ? 3:2), str, strlen(str));
sprintf(str, "FPS: %i/%i | %s", mainLoopData.fps, mainLoopData.fps3d, paused ? "Paused":"Running");
sprintf(str, "FPS: %i/%i (%02d%%) | %s", mainLoopData.fps, mainLoopData.fps3d, Hud.arm9load, paused ? "Paused":"Running");
TextOut(hMemDC, 8, 384 + 14 * (twolinever ? 4:3), str, strlen(str));
sprintf(str, "3D Render: %s", core3DList[cur3DCore]->name);