From 6de6a793ab90de60af5aa06efdb89bdf6d1b81ee Mon Sep 17 00:00:00 2001 From: twinaphex Date: Thu, 15 Aug 2013 00:12:35 +0200 Subject: [PATCH] (Android Phoenix) Include popup about asset extraction Bump up to version 0.9.9.5 --- .../src/org/retroarch/browser/MainMenuActivity.java | 12 ++++++++++-- general.h | 4 ++-- 2 files changed, 12 insertions(+), 4 deletions(-) diff --git a/android/phoenix/src/org/retroarch/browser/MainMenuActivity.java b/android/phoenix/src/org/retroarch/browser/MainMenuActivity.java index 395bd33bfd..008c609073 100644 --- a/android/phoenix/src/org/retroarch/browser/MainMenuActivity.java +++ b/android/phoenix/src/org/retroarch/browser/MainMenuActivity.java @@ -49,9 +49,9 @@ public class MainMenuActivity extends PreferenceActivity { if (!detectDevice(false)) { - AlertDialog.Builder alert = new AlertDialog.Builder(this) + AlertDialog.Builder alert = new AlertDialog.Builder(this) .setTitle("Welcome to RetroArch") - .setMessage("This is your first time starting up RetroArch. RetroArch will now be preconfigured for the best possible gameplay experience. Please be aware that it might take some time until all shader and overlay assets are extracted.\n\nNOTE: Advanced users who want to finetune for the best possible audio/video experience should use static synchronization and turn off threaded video. Be aware that this is hard to configure right and might result in unpleasant audio crackles when it has been configured wrong.\n\nThreaded video should work fine on most devices, but applies some adaptive video jittering to achieve this. ") + .setMessage("This is your first time starting up RetroArch. RetroArch will now be preconfigured for the best possible gameplay experience. Please be aware that it might take some time until all shader and overlay assets are extracted...") .setPositiveButton("OK", new DialogInterface.OnClickListener() { @Override public void onClick(DialogInterface dialog, int which) { @@ -63,6 +63,14 @@ public class MainMenuActivity extends PreferenceActivity { }); alert.show(); } + else + { + AlertDialog.Builder alert = new AlertDialog.Builder(this) + .setTitle("Welcome to RetroArch") + .setMessage("This is your first time starting up RetroArch. Please be aware that it might take some time until all shader and overlay assets are extracted...") + .setPositiveButton("OK", null); + alert.show(); + } } } diff --git a/general.h b/general.h index cde28f8b35..0d662853be 100644 --- a/general.h +++ b/general.h @@ -41,9 +41,9 @@ #ifndef PACKAGE_VERSION #ifdef __QNX__ /* FIXME - avoid too many decimal points in number error */ -#define PACKAGE_VERSION "0994" +#define PACKAGE_VERSION "0995" #else -#define PACKAGE_VERSION "0.9.9.4" +#define PACKAGE_VERSION "0.9.9.5" #endif #endif