Skip to content

Commit

Permalink
front: added fla files to 2.5 import feature
Browse files Browse the repository at this point in the history
  • Loading branch information
fzurita committed Apr 5, 2016
1 parent db60667 commit 65d515a
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/paulscode/android/mupen64plusae/jni/CoreInterface.java
Expand Up @@ -214,7 +214,7 @@ private static void moveFromLegacy()

if (legacySlotPath.listFiles() != null)
{
// Move sra, mpk, and eep files
// Move sra, mpk, fla, and eep files
final FileFilter fileSramFilter = new FileFilter()
{

Expand All @@ -225,7 +225,8 @@ public boolean accept(File pathname)

return fileName.contains(sGamePrefs.gameGoodName + ".sra")
|| fileName.contains(sGamePrefs.gameGoodName + ".eep")
|| fileName.contains(sGamePrefs.gameGoodName + ".mpk");
|| fileName.contains(sGamePrefs.gameGoodName + ".mpk")
|| fileName.contains(sGamePrefs.gameGoodName + ".fla");
}
};

Expand Down

0 comments on commit 65d515a

Please sign in to comment.