From dfea5c133f8cd8760f7517e3275659dd9b6f5afe Mon Sep 17 00:00:00 2001 From: Jason Sams Date: Tue, 19 Jan 2010 17:46:34 -0800 Subject: [PATCH] Fix for bug 2382944. This is a very safe change that just corrects a long standing scroll speed bug in launcher. --- res/raw/rollo3.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/res/raw/rollo3.c b/res/raw/rollo3.c index aa7e075ff4..f3250a005c 100644 --- a/res/raw/rollo3.c +++ b/res/raw/rollo3.c @@ -106,7 +106,7 @@ void move() { if (g_LastTouchDown) { float dx = -(state->newPositionX - g_LastPositionX); g_PosVelocity = 0; - g_PosPage += dx * 4; + g_PosPage += dx * 5.2f; float pmin = -0.49f; float pmax = g_PosMax + 0.49f;