diff options
author | Shauren <shauren.trinity@gmail.com> | 2016-11-28 20:21:21 +0100 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2016-11-28 20:21:21 +0100 |
commit | 9633c8c2b70d230ec0c0825e29f52722744afcb4 (patch) | |
tree | 40454e371a71ca0ff28f43c039f88a31f3fa3951 /src/tools/vmap4_assembler/VMapAssembler.cpp | |
parent | e0fb4445cd2f5f4bb94ea23122548debddc41ba6 (diff) |
Core/Debugging: Partially revert e0fb4445cd2f5f4bb94ea23122548debddc41ba6, the cmake hack to build wheaty directly into executable is still needed as it is impossible to have it initialize before every other static variable when it resides in dll (dynamic linking only)
Diffstat (limited to 'src/tools/vmap4_assembler/VMapAssembler.cpp')
-rw-r--r-- | src/tools/vmap4_assembler/VMapAssembler.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/tools/vmap4_assembler/VMapAssembler.cpp b/src/tools/vmap4_assembler/VMapAssembler.cpp index ef5b93c25ac..a407e80ff14 100644 --- a/src/tools/vmap4_assembler/VMapAssembler.cpp +++ b/src/tools/vmap4_assembler/VMapAssembler.cpp @@ -21,15 +21,13 @@ #include "TileAssembler.h" #include "Banner.h" -#include "WheatyExceptionReport.h" int main(int argc, char* argv[]) { - InitializeCrashHandler(); Trinity::Banner::Show("VMAP assembler", [](char const* text) { std::cout << text << std::endl; }, nullptr); std::string src = "Buildings"; - std::string dest = "vmaps"; + std::string dest = "vmaps"; if (argc > 3) { |