Changed FTLDat to allow opening dats in read-only mode

This commit is contained in:
Vhati 2013-09-29 07:58:57 -04:00
parent 7b65cc5d73
commit b94440e0a0
7 changed files with 55 additions and 14 deletions

View file

@ -84,7 +84,7 @@ public class DatExtractDialog extends ProgressDialog {
dstP = new FTLDat.FolderPack( extractDir );
for ( File datFile : datFiles ) {
srcP = new FTLDat.FTLPack( datFile, false );
srcP = new FTLDat.FTLPack( datFile, "r" );
progress = 0;
List<String> innerPaths = srcP.list();
setProgressLater( progress, innerPaths.size() );