From 4d72803725ab6f399c1f35d427c5eb115287a7b8 Mon Sep 17 00:00:00 2001 From: modeco80 Date: Wed, 7 Sep 2022 04:09:48 -0500 Subject: [PATCH] oops, fix paktest --- src/tools/paktest.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tools/paktest.cpp b/src/tools/paktest.cpp index 7944ee1..9809972 100644 --- a/src/tools/paktest.cpp +++ b/src/tools/paktest.cpp @@ -31,7 +31,7 @@ int main(int argc, char** argv) { reader.ReadData(); for(auto& [filename, file] : reader.GetFiles()) { - writer.AddFile(filename, file); + writer.GetFiles()[filename] = file; } }