ID:148698
 
Like a problem in my code. When I run it, it tells me that an infinite loop is detected. I have a feeling this is what is causing everything to slow down by repeating a task constantly.

What I would like from the readers is one of the following:

1. I have a lot of code, so an infinite loop would take a long time to detect going through it all the way. Are there any techniques that you use to quickly locate an infinite loop?

2. Some common causes of low frame rate to look out for, since this only happened suddenly.
1. Usually, I look somewhere around in the proc that is repeated in the "Call Stack"
2. Yes: loops. Lots of them.
In response to Garthor
Incredible how blind I can be at times. Until I read what you said, I didn't even notice the proc it spoke about. Commented it out to test and instantly, the problem the was solved. Thanks a lot for making me look. :)