From daf20c16bdf02d2ef03764585666b90d9be388e6 Mon Sep 17 00:00:00 2001 From: lethosor Date: Sat, 24 Oct 2015 14:52:00 -0400 Subject: [PATCH] Indicate development builds --- plugins/title-version.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/plugins/title-version.cpp b/plugins/title-version.cpp index c52a7a9f5..c62568f1e 100644 --- a/plugins/title-version.cpp +++ b/plugins/title-version.cpp @@ -33,6 +33,8 @@ struct title_version_hook : df::viewscreen_titlest { INTERPOSE_NEXT(render)(); int x = 0, y = 0; OutputString(COLOR_WHITE, x, y, string("DFHack ") + DFHACK_VERSION); + if (!DFHACK_IS_RELEASE) + OutputString(COLOR_WHITE, x, y, " (dev)"); } };