From 232706d66563e6d1edaca1db70570a4e04f0d2cb Mon Sep 17 00:00:00 2001 From: ToadKing Date: Fri, 22 Feb 2013 17:33:41 -0500 Subject: [PATCH] (Android/Phoenix)expand on ROM load error message --- android/phoenix/src/org/retroarch/browser/RetroArch.java | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/android/phoenix/src/org/retroarch/browser/RetroArch.java b/android/phoenix/src/org/retroarch/browser/RetroArch.java index 7dfc7c553a..f7cc6373f9 100644 --- a/android/phoenix/src/org/retroarch/browser/RetroArch.java +++ b/android/phoenix/src/org/retroarch/browser/RetroArch.java @@ -474,21 +474,18 @@ public class RetroArch extends Activity implements } break; case ACTIVITY_NATIVE_ACTIVITY: - Log.i(TAG, "native return"); AlertDialog.Builder builder = new AlertDialog.Builder(this).setNeutralButton("OK", null); try { DataInputStream cacheStream = new DataInputStream(new FileInputStream(return_file)); int value = cacheStream.readInt(); cacheStream.close(); - Log.i(TAG, "native return value"); - Log.i(TAG, "native return value:" + value); if (value != 0) { - builder.setTitle("Error").setMessage("RetroArch Could not load the chosen ROM").show(); + throw new IOException(); } } catch (FileNotFoundException e) { builder.setTitle("Crash").setMessage("RetroArch Crashed").show(); } catch (IOException e) { - builder.setTitle("Error").setMessage("RetroArch Could not load the chosen ROM").show(); + builder.setTitle("Error").setMessage("RetroArch Could not load the chosen ROM.\n\nCheck the Cores Guide for details on valid ROMs for this emulator.").show(); } new File(return_file).delete(); break;