This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// This contains some of orteil's code, THIS IS NOT MINE! The 60FPS patch is mine however. | |
var CC60_Counter = 0 | |
Game.Logic=function() | |
{ | |
CC60_Counter += 30 / Game.fps | |
if (CC60_Counter >= 1) CC60_Counter = 0 |