Merge pull request #7 from lihuilai/master

修复CocosCreator1.8.2版本Drawcall显示为NaN的问题
This commit is contained in:
potato47
2019-08-30 14:42:48 +08:00
committed by GitHub

View File

@@ -34,7 +34,7 @@ var Stats = function () {
function getDrawcalls() { function getDrawcalls() {
if (window.cc) { if (window.cc) {
return cc.renderer.drawCalls; return cc.g_NumberOfDraws || cc.renderer.drawCalls;
} else { } else {
return Infinity; return Infinity;
} }