Update GetFPSNode.hx

Checkstyle
This commit is contained in:
E1e5en 2020-10-27 18:23:10 +03:00 committed by GitHub
parent 658d2546d8
commit fb00b4533c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -12,8 +12,8 @@ class GetFPSNode extends LogicNode {
if ((fps == Math.POSITIVE_INFINITY) || (fps == Math.NEGATIVE_INFINITY) || (Math.isNaN(fps))) { if ((fps == Math.POSITIVE_INFINITY) || (fps == Math.NEGATIVE_INFINITY) || (Math.isNaN(fps))) {
return 0; return 0;
} }
return fps; return fps;
} }
return null; return null;
} }
} }