|
@@ -28,10 +28,10 @@ const bool exportUnknownToFiles = false;
|
|
|
|
|
|
// Change these variables to true if you want export catecory to databases.
|
|
|
const bool exportTextsToDb = true;
|
|
|
-const bool exportImagesToDb = false;
|
|
|
-const bool exportFontsToDb = false;
|
|
|
-const bool exportSoundsToDb = false;
|
|
|
-const bool exportTexturesToDb = false;
|
|
|
+const bool exportImagesToDb = true;
|
|
|
+const bool exportFontsToDb = true;
|
|
|
+const bool exportSoundsToDb = true;
|
|
|
+const bool exportTexturesToDb = true;
|
|
|
const bool exportUnknownToDb = false;
|
|
|
// There is no need to change anything else
|
|
|
|
|
@@ -61,9 +61,6 @@ int main() {
|
|
|
DatFile a((path + filename).c_str(), 0);
|
|
|
std::cout << "Total files found: " << a.files_number() << std::endl << std::flush;
|
|
|
|
|
|
- std::cout << "Writing unordered dictionary:\n";
|
|
|
- a.WriteUnorderedDictionary(output_dir);
|
|
|
-
|
|
|
std::cout << "Beginning unpacking... Please, wait for some minutes."
|
|
|
"\nMaybe it's a good idea to have a cup of tea, while unpacker is working...\n" << std::flush;
|
|
|
|