mirror of
https://github.com/raysan5/raylib.git
synced 2025-12-25 10:22:33 -05:00
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:
@ -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;
|
||||
|
||||
Reference in New Issue
Block a user