Fixed Android compilation with 1.3 updates

- Fixed Android MakeFile adding gestures module.
- Fixed Android project template functions names.
- Updated compiled library and header.
This commit is contained in:
victorfisac
2015-12-30 03:12:52 +01:00
parent e683fe88b9
commit 6e5ceaa30d
4 changed files with 172 additions and 12 deletions

View File

@ -70,7 +70,7 @@ void android_main(struct android_app *app)
// TODO: Update TITLE screen variables here!
// Press enter to change to GAMEPLAY screen
if (IsScreenTouched())
if (IsGestureDetected())
{
PlaySound(fx);
currentScreen = GAMEPLAY;
@ -81,7 +81,7 @@ void android_main(struct android_app *app)
// TODO: Update GAMEPLAY screen variables here!
// Press enter to change to ENDING screen
if (IsScreenTouched())
if (IsGestureDetected())
{
PlaySound(fx);
currentScreen = ENDING;
@ -92,7 +92,7 @@ void android_main(struct android_app *app)
// TODO: Update ENDING screen variables here!
// Press enter to return to TITLE screen
if (IsScreenTouched())
if (IsGestureDetected())
{
PlaySound(fx);
currentScreen = TITLE;