I have a simple C app that uses constant 50%. I don\'t know why but I like to minimize it as much as possible.
#include #include
Yes, it's your tight loop in Wait(). You probably have a dual-core machine, so you're using 100% of one core. Use sleep() instead.
Wait()
sleep()