diff --git a/bugs.txt b/bugs.txt index 1a2b26187..4c6a329ab 100644 --- a/bugs.txt +++ b/bugs.txt @@ -3,6 +3,8 @@ Known bugs - With 4:3 screen aspect ratio the on-screen buttons are not shown on the inactive part of screen. +- Put video at the center of the screen with 4:3 aspect ratio option + - Calling SDL_SetVideoMode() with SDL 1.3 several times makes it crash. - Calling SDL_Init()/SDL_Quit() several times will make SDL 1.2 crash. @@ -11,15 +13,13 @@ Known bugs - 32-bpp color mode does not work with SW video surface, 24-bpp and 32-bpp mode does not work with SDL_HWSURFACE. +- Set on-screen button + Requested features ================== -- Support for resuming download of partially-downloaded files. - - Perform a check for free space available on SD card before writing there, and write to the internal storage if SD card is unplugged. -- Force SW video mode from AndroidAppSettings.cfg, ignore SDL_HWSURFACE if app does not explicitly support it. - - Split Settings.java into several files - Show/hide screen controls with longpress on Text Edit button. diff --git a/project/java/Settings.java b/project/java/Settings.java index 47d16cca6..f0881c1ec 100644 --- a/project/java/Settings.java +++ b/project/java/Settings.java @@ -2254,7 +2254,7 @@ class Settings public void onTouchEvent(final MotionEvent ev) { - if(Globals.ScreenKbControlsLayout.length >= currentButton) + if(currentButton >= Globals.ScreenKbControlsLayout.length) { setupButton(false); return; diff --git a/project/jni/application/ballfield/AndroidAppSettings.cfg b/project/jni/application/ballfield/AndroidAppSettings.cfg index f52fc12be..9d57bb463 100644 --- a/project/jni/application/ballfield/AndroidAppSettings.cfg +++ b/project/jni/application/ballfield/AndroidAppSettings.cfg @@ -15,7 +15,7 @@ SdlVideoResize=y SdlVideoResizeKeepAspect=n CompatibilityHacks=n CompatibilityHacksStaticInit=n -CompatibilityHacksTextInputEmulatesHwKeyboard=y +CompatibilityHacksTextInputEmulatesHwKeyboard=n CompatibilityHacksPreventAudioChopping=n CompatibilityHacksAppIgnoresAudioBufferSize=n AppUsesMouse=y