diff options
author | Shauren <shauren.trinity@gmail.com> | 2016-11-28 18:37:51 +0100 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2016-11-28 18:37:51 +0100 |
commit | e0fb4445cd2f5f4bb94ea23122548debddc41ba6 (patch) | |
tree | a2850cbf86c3097ef99c4bc7cb3255e2b22da63c /src/tools/vmap4_assembler/VMapAssembler.cpp | |
parent | e43529933fbedb02c9e4b636b6e1d9d94398e5e6 (diff) |
Core/Debugging: Added wheaty everywhere and modified it to always reliably report issues during static initialization
Diffstat (limited to 'src/tools/vmap4_assembler/VMapAssembler.cpp')
-rw-r--r-- | src/tools/vmap4_assembler/VMapAssembler.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/tools/vmap4_assembler/VMapAssembler.cpp b/src/tools/vmap4_assembler/VMapAssembler.cpp index a407e80ff14..ef5b93c25ac 100644 --- a/src/tools/vmap4_assembler/VMapAssembler.cpp +++ b/src/tools/vmap4_assembler/VMapAssembler.cpp @@ -21,13 +21,15 @@ #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) { |