aboutsummaryrefslogtreecommitdiff
path: root/src/tools/vmap4_assembler/VMapAssembler.cpp
diff options
context:
space:
mode:
authorShauren <shauren.trinity@gmail.com>2023-12-01 19:53:13 +0100
committerShauren <shauren.trinity@gmail.com>2023-12-01 19:53:13 +0100
commit333630b7de15c4090392fcbbc1bc58da4d5fb138 (patch)
treefc40b0467ea09379a8f18059ebc029ea0a18c38a /src/tools/vmap4_assembler/VMapAssembler.cpp
parent8d6578b58025e71f88297cb2b6d222251b4bbe75 (diff)
Core/Misc: Added windows version checks during startup to avoid confusion about crashes when running on unsupported OS
Diffstat (limited to 'src/tools/vmap4_assembler/VMapAssembler.cpp')
-rw-r--r--src/tools/vmap4_assembler/VMapAssembler.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/tools/vmap4_assembler/VMapAssembler.cpp b/src/tools/vmap4_assembler/VMapAssembler.cpp
index aedafb6d3da..38eb53ed9be 100644
--- a/src/tools/vmap4_assembler/VMapAssembler.cpp
+++ b/src/tools/vmap4_assembler/VMapAssembler.cpp
@@ -21,9 +21,12 @@
#include "TileAssembler.h"
#include "Banner.h"
#include "Locales.h"
+#include "Util.h"
int main(int argc, char* argv[])
{
+ Trinity::VerifyOsVersion();
+
Trinity::Locale::Init();
Trinity::Banner::Show("VMAP assembler", [](char const* text) { std::cout << text << std::endl; }, nullptr);