diff --git a/shell/android-studio/reicast/src/main/java/com/reicast/emulator/debug/GenerateLogs.java b/shell/android-studio/reicast/src/main/java/com/reicast/emulator/debug/GenerateLogs.java index 0ee3e114d..4cdcb5bb4 100644 --- a/shell/android-studio/reicast/src/main/java/com/reicast/emulator/debug/GenerateLogs.java +++ b/shell/android-studio/reicast/src/main/java/com/reicast/emulator/debug/GenerateLogs.java @@ -153,7 +153,7 @@ public class GenerateLogs extends AsyncTask { } try { mLogcatProc = Runtime.getRuntime().exec( - new String[] { "logcat", "-d", "AndroidRuntime:E *:S" }); + new String[] { "logcat", "-ds", "AndroidRuntime:E" }); reader = new BufferedReader(new InputStreamReader( mLogcatProc.getInputStream())); String line; @@ -187,7 +187,7 @@ public class GenerateLogs extends AsyncTask { mLogcatProc = null; reader = null; mLogcatProc = Runtime.getRuntime().exec( - new String[] { "logcat", "-d", "reicast:V *:S" }); + new String[] { "logcat", "-ds", "reicast:V" }); reader = new BufferedReader(new InputStreamReader( mLogcatProc.getInputStream())); log.append(separator); @@ -203,7 +203,7 @@ public class GenerateLogs extends AsyncTask { mLogcatProc = null; reader = null; mLogcatProc = Runtime.getRuntime().exec( - new String[] { "logcat", "-d", "GL2JNIView:E *:S" }); + new String[] { "logcat", "-ds", "GL2JNIView:E" }); reader = new BufferedReader(new InputStreamReader( mLogcatProc.getInputStream())); log.append(separator); diff --git a/shell/android-studio/reicast/src/main/java/com/reicast/emulator/emu/GL2JNIView.java b/shell/android-studio/reicast/src/main/java/com/reicast/emulator/emu/GL2JNIView.java index d98dccec5..aaac44d6d 100644 --- a/shell/android-studio/reicast/src/main/java/com/reicast/emulator/emu/GL2JNIView.java +++ b/shell/android-studio/reicast/src/main/java/com/reicast/emulator/emu/GL2JNIView.java @@ -655,7 +655,7 @@ public class GL2JNIView extends GLSurfaceView long used=pos-Player.getPlaybackHeadPosition(); long avail=size-used; - //Log.i("AUD", "u: " + used + " a: " + avail); + //Log.i("audcfg", "u: " + used + " a: " + avail); if (avail