animitter icon indicating copy to clipboard operation
animitter copied to clipboard

Unreachable code

Open binarykitchen opened this issue 8 years ago • 0 comments

    getFPS: function(){
        return this.deltaTime > 0 ? 1000 / this.deltaTime : 0;
        if(this.deltaTime){ // <--- this code never gets executed :)
            return 1000 / this.deltaTime;
        }
    },

binarykitchen avatar Apr 22 '17 00:04 binarykitchen