diff --git a/Sources/armory/logicnode/GetFPSNode.hx b/Sources/armory/logicnode/GetFPSNode.hx index b4d65baf..32004a5a 100644 --- a/Sources/armory/logicnode/GetFPSNode.hx +++ b/Sources/armory/logicnode/GetFPSNode.hx @@ -12,8 +12,8 @@ class GetFPSNode extends LogicNode { if ((fps == Math.POSITIVE_INFINITY) || (fps == Math.NEGATIVE_INFINITY) || (Math.isNaN(fps))) { return 0; } - return fps; + return fps; } return null; } -} \ No newline at end of file +}