From f6a91c2f30dd482e44bbfced45e31bfa5d915468 Mon Sep 17 00:00:00 2001 From: lethosor Date: Sat, 8 Oct 2016 16:58:08 -0400 Subject: [PATCH] Log architecture on startup --- library/Core.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/library/Core.cpp b/library/Core.cpp index fb1dd80bb..75fe576f4 100644 --- a/library/Core.cpp +++ b/library/Core.cpp @@ -250,6 +250,7 @@ static string dfhack_version_desc() s << "(release)"; else s << "(development build " << Version::git_description() << ")"; + s << " on " << (sizeof(void*) == 8 ? "x86_64" : "x86"); return s.str(); }