Browse Source

Fix compile error

Lou Yihua 7 years ago
parent
commit
f577c8675d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      android/src/io/github/sdlpal/PalActivity.java

+ 1 - 1
android/src/io/github/sdlpal/PalActivity.java

@@ -19,7 +19,7 @@ public class PalActivity extends SDLActivity {
             mediaPlayer.setDataSource(mSingleton.getApplicationContext(), Uri.fromFile(new File(filename)));
             mediaPlayer.prepare();
         } catch(IOException e) {
-            Log.e(TAG, interFileURI.toString() + " not available for playing, check");
+            Log.e(TAG, filename + " not available for playing, check");
         }
     }