summaryrefslogtreecommitdiff
path: root/ZAPD/Main.cpp
diff options
context:
space:
mode:
authorNicholas Estelami <NEstelami@users.noreply.github.com>2023-11-11 22:43:46 -0500
committerNicholas Estelami <NEstelami@users.noreply.github.com>2023-11-11 22:43:46 -0500
commit76cbe333d6358ba72f816d5bc8868941765bed16 (patch)
treebef1a9ce58faca2f993e062e40a2601a820d0a80 /ZAPD/Main.cpp
parent463ec365380560cc00ef8da62650333714738bcb (diff)
Added MM Text
Diffstat (limited to 'ZAPD/Main.cpp')
-rw-r--r--ZAPD/Main.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/ZAPD/Main.cpp b/ZAPD/Main.cpp
index 862ace1..eeb72b0 100644
--- a/ZAPD/Main.cpp
+++ b/ZAPD/Main.cpp
@@ -57,6 +57,9 @@ ZSymbol sym(nullptr);
#include "ZText.h"
ZText txt(nullptr);
+#include "ZTextMM.h"
+ZTextMM txtMM(nullptr);
+
#include "ZTexture.h"
ZTexture tex(nullptr);
@@ -603,7 +606,8 @@ int HandleExtract(ZFileMode fileMode, ExporterSet* exporterSet)
auto start = std::chrono::steady_clock::now();
int fileListSize = fileList.size();
- Globals::Instance->singleThreaded = false;
+ // Globals::Instance->singleThreaded = false;
+ Globals::Instance->singleThreaded = true;
for (int i = 0; i < fileListSize; i++)
Globals::Instance->workerData[i] = new FileWorker();