Change text labels from RGBA to ALPHA8.  Reduces memory usage and may increase performance.
diff --git a/res/raw/allapps.rs b/res/raw/allapps.rs
index edbbcd8..8cbbea2 100644
--- a/res/raw/allapps.rs
+++ b/res/raw/allapps.rs
@@ -106,7 +106,7 @@
     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;