Fixed on-screen keyboard not drawing

This commit is contained in:
pelya
2011-02-02 10:26:35 +00:00
parent f6c8bd724a
commit 36128968af
3 changed files with 20 additions and 22 deletions

View File

@@ -17,7 +17,6 @@ class Globals {
// Set this value to true if you're planning to render 3D using OpenGL - it eats some GFX resources, so disabled for 2D
public static boolean NeedDepthBuffer = false;
// Set this value to true if you're planning to render 3D using OpenGL - it eats some GFX resources, so disabled for 2D
public static boolean HorizontalOrientation = true;
// prevent device from going to suspend mode
@@ -92,7 +91,7 @@ class Globals {
public static int MultitouchGestureSensitivity = 1;
public static int TouchscreenCalibration[] = new int[4];
public static String DataDir = new String("");
public static boolean SmoothVideo = false;
public static boolean SmoothVideo = true; // It looks nicer and doesn't take that much time if you have GFX accelerator
}
class LoadLibrary {