Forgot to disable debug
This commit is contained in:
@@ -140,7 +140,7 @@ RedefinedKeysScreenKbNames="RETURN SPACE"
|
||||
|
||||
# Redefine gamepad keys to SDL keysyms, button order is:
|
||||
# A B X Y L1 R1 L2 R2 LThumb RThumb
|
||||
RedefinedKeysGamepad="RETURN ESCAPE"
|
||||
RedefinedKeysGamepad="RETURN ESCAPE SPACE SPACE"
|
||||
|
||||
# How long to show startup menu button, in msec, 0 to disable startup menu
|
||||
StartupMenuButtonTimeout=0
|
||||
@@ -163,10 +163,10 @@ MultiABI=n
|
||||
AppMinimumRAM=0
|
||||
|
||||
# Application version code (integer)
|
||||
AppVersionCode=1401
|
||||
AppVersionCode=1403
|
||||
|
||||
# Application user-visible version name (string)
|
||||
AppVersionName="1.4.01"
|
||||
AppVersionName="1.4.03"
|
||||
|
||||
# Reset SDL config when updating application to the new version (y) / (n)
|
||||
ResetSdlConfigForThisVersion=n
|
||||
|
||||
Binary file not shown.
@@ -28,6 +28,9 @@ For complete product license refer to LICENSE.TXT file
|
||||
INCLUDES
|
||||
******************************************************************************/
|
||||
#include <string.h>
|
||||
#ifdef __ANDROID__
|
||||
#include <SDL_screenkeyboard.h>
|
||||
#endif
|
||||
|
||||
#include "inc.h"
|
||||
|
||||
@@ -222,6 +225,10 @@ BNX_BOOL hofEnter( BNX_GAME *game )
|
||||
strcpy( recEntry->name, " " );
|
||||
recEntry->score = game->score[ cPlayer1 ];
|
||||
inpInit();
|
||||
#ifdef __ANDROID__
|
||||
SDL_ANDROID_SetScreenKeyboardHintMesage("Enter your name");
|
||||
SDL_ANDROID_ToggleScreenKeyboardTextInput("");
|
||||
#endif
|
||||
do
|
||||
{
|
||||
startTime = sysGetTime();
|
||||
|
||||
Reference in New Issue
Block a user