Skip to content

Commit

Permalink
Fixed bug #12
Browse files Browse the repository at this point in the history
  • Loading branch information
LMH01 committed Mar 14, 2021
1 parent 57690e7 commit 1f24123
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public static boolean exportGenre(int genreId, String genreName) throws IOExcept
File fileDataFolder = new File(EXPORTED_GENRE_DATA_FOLDER_PATH);
File fileExportedGenre = new File(EXPORTED_GENRE_MAIN_FOLDER_PATH + "//genre.txt");
File fileExportedGenreIcon = new File(EXPORTED_GENRE_DATA_FOLDER_PATH + "//icon.png");
File fileGenreIconToExport = new File(Utils.getMGT2GenreIconsPath() + "icon" + AnalyzeExistingGenres.genreList.get(genreId).get("NAME EN") + ".png");
File fileGenreIconToExport = new File(Utils.getMGT2GenreIconsPath() + "icon" + AnalyzeExistingGenres.genreList.get(genreId).get("NAME EN").replaceAll(" ", "") + ".png");
File fileGenreScreenshotsToExport = new File(Utils.getMGT2ScreenshotsPath() + genreId);
if(!fileExportedGenreIcon.exists()){
fileDataFolder.mkdirs();
Expand Down

0 comments on commit 1f24123

Please sign in to comment.