Properly size debug text when zoomed

This commit is contained in:
Henrik Rydgard 2012-12-18 11:56:58 +01:00
parent a375dcb97c
commit 0448c62146

View File

@ -196,7 +196,7 @@ void hleEnterVblank(u64 userdata, int cyclesLate)
gpuStats.numShaders
);
float zoom = 0.7f * sqrtf(g_Config.iWindowZoom);
float zoom = 0.7f / g_Config.iWindowZoom;
PPGeBegin();
PPGeDrawText(stats, 2, 2, 0, zoom, 0x90000000);
PPGeDrawText(stats, 0, 0, 0, zoom);