Note about x_calc_ratio.

This commit is contained in:
James Sanford 2013-02-03 16:17:31 -08:00
parent f31ca41ed8
commit 49bda51656
1 changed files with 2 additions and 0 deletions

View File

@ -619,5 +619,7 @@ void x_release_kimage(Kimage* kimage_ptr)
// OG Addding ratio
int x_calc_ratio(float x,float y)
{
// NOTE: This is a little bit slower, but is consistent time with each frame update.
// Using this looks better as sleep() successfully syncs up with 1/60sec updates.
return 1;
}