diff --git a/decompiler/extractor/main.cpp b/decompiler/extractor/main.cpp index eb27c210d3..ed5fadc2af 100644 --- a/decompiler/extractor/main.cpp +++ b/decompiler/extractor/main.cpp @@ -1,5 +1,5 @@ #include "third-party/CLI11.hpp" -#include "third-party/fmt/core.h" +#include "common/log/log.h" #include "common/util/FileUtil.h" #include "decompiler/Disasm/OpcodeInfo.h" #include "decompiler/ObjectFile/ObjectFileDB.h" @@ -133,6 +133,8 @@ int main(int argc, char** argv) { bool flag_compile = false; bool flag_play = false; + lg::initialize(); + CLI::App app{"OpenGOAL Level Extraction Tool"}; app.add_option("game-files-path", data_dir_path, "The path to the folder with the ISO extracted or the ISO itself")