Flash lib path error message fix

This commit is contained in:
Jindra Petřík
2015-04-26 09:32:18 +02:00
parent e128e6aacb
commit 906881e096
2 changed files with 2 additions and 2 deletions
@@ -2401,7 +2401,7 @@ public class ActionScriptParser {
private static void initPlayer() throws IOException, InterruptedException {
if (playerABCs.isEmpty()) {
if (Configuration.getPlayerSWC() == null) {
throw new IOException("Player SWC library not found, please place it to " + Configuration.getPlayerSWC());
throw new IOException("Player SWC library not found, please place it to " + Configuration.getFlashLibPath());
}
SWC swc = new SWC(new FileInputStream(Configuration.getPlayerSWC()));
SWF swf = new SWF(swc.getSWF("library.swf"), true);