From 0a3e4cb7d81db473dfa245ce078e79e40c6953cd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henri=20Hyyryl=C3=A4inen?= Date: Sun, 27 Jan 2019 17:38:51 +0200 Subject: [PATCH] Changed the non-release text to be development as I think that's nicer --- src/ThriveGame.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ThriveGame.cpp b/src/ThriveGame.cpp index b3aa2239fcd..5edfd828ff9 100644 --- a/src/ThriveGame.cpp +++ b/src/ThriveGame.cpp @@ -163,7 +163,7 @@ class ThriveGame::Implementation { ThriveGame::ThriveGame() { #ifndef MAKE_RELEASE - LOG_INFO("Enabling cheats because this is a non-release build"); + LOG_INFO("Enabling cheats because this is a development build"); m_cheatsEnabled = true; #endif // MAKE_RELEASE @@ -186,7 +186,7 @@ std::string { return "Thrive " GAME_VERSIONS #ifndef MAKE_RELEASE - " (non-release)" + " (development)" #endif ; }