Merge pull request #127 from victorfisac/develop

Fix Android template with 1.5 raylib features (audio streaming, gestures)
This commit is contained in:
Ray 2016-06-09 23:27:50 +02:00
commit fb90477354
2 changed files with 6 additions and 6 deletions

View File

@ -83,7 +83,7 @@ LOCAL_SRC_FILES := basic_game.c
LOCAL_C_INCLUDES := $(LOCAL_PATH) $(LOCAL_PATH)/include
# Required flags for compilation: defines PLATFORM_ANDROID
LOCAL_CFLAGS := -Wall -std=c99 -g -DPLATFORM_ANDROID
LOCAL_CFLAGS := -Wall -std=c99 -DPLATFORM_ANDROID
# Linker required libraries (not many...)
LOCAL_LDLIBS := -llog -landroid -lEGL -lGLESv2 -lOpenSLES

View File

@ -43,7 +43,7 @@ void android_main(struct android_app *app)
int framesCounter = 0; // Used to count frames
PlayMusicStream("ambient.ogg");
PlayMusicStream(0, "ambient.ogg");
SetTargetFPS(60); // Not required on Android, already locked to 60 fps
//--------------------------------------------------------------------------------------
@ -53,7 +53,7 @@ void android_main(struct android_app *app)
{
// Update
//----------------------------------------------------------------------------------
UpdateMusicStream();
UpdateMusicStream(0);
switch(currentScreen)
{
@ -74,7 +74,7 @@ void android_main(struct android_app *app)
// TODO: Update TITLE screen variables here!
// Press enter to change to GAMEPLAY screen
if (GetGestureType() == GESTURE_TAP)
if (IsGestureDetected(GESTURE_TAP))
{
PlaySound(fx);
currentScreen = GAMEPLAY;
@ -85,7 +85,7 @@ void android_main(struct android_app *app)
// TODO: Update GAMEPLAY screen variables here!
// Press enter to change to ENDING screen
if (GetGestureType() == GESTURE_TAP)
if (IsGestureDetected(GESTURE_TAP))
{
PlaySound(fx);
currentScreen = ENDING;
@ -96,7 +96,7 @@ void android_main(struct android_app *app)
// TODO: Update ENDING screen variables here!
// Press enter to return to TITLE screen
if (GetGestureType() == GESTURE_TAP)
if (IsGestureDetected(GESTURE_TAP))
{
PlaySound(fx);
currentScreen = TITLE;