From 49bda5165604d4fb54a739ee049ad564150931be Mon Sep 17 00:00:00 2001 From: James Sanford Date: Sun, 3 Feb 2013 16:17:31 -0800 Subject: [PATCH] Note about x_calc_ratio. --- jni/android_driver.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/jni/android_driver.c b/jni/android_driver.c index 1e04636..18f071c 100644 --- a/jni/android_driver.c +++ b/jni/android_driver.c @@ -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; }