From 4815bce313c3a39af37b0ac6f582f3671fa134cf Mon Sep 17 00:00:00 2001 From: Stas Degteff Date: Tue, 11 Oct 2005 17:43:38 +0000 Subject: [PATCH] Widepid contains platform again --- docs/notework.txt | 2 ++ golded3/gectrl.cpp | 7 ++++--- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/docs/notework.txt b/docs/notework.txt index c974f1f..4552f93 100644 --- a/docs/notework.txt +++ b/docs/notework.txt @@ -10,6 +10,8 @@ ______________________________________________________________________ Notes for GoldED+ 1.1.5, /snapshot/ ______________________________________________________________________ ++ Macro '@widepid' contains platform ID again. + ! Golded+ now may be compiled on 64bit platforms. + Fix P4 and IA64 cpu detection. diff --git a/golded3/gectrl.cpp b/golded3/gectrl.cpp index 50246a7..cde3c0f 100644 --- a/golded3/gectrl.cpp +++ b/golded3/gectrl.cpp @@ -216,10 +216,11 @@ const char* get_informative_string(void) { static char informative_string[356] = ""; if(informative_string[0] == NUL) - sprintf(informative_string, "%s%s%s %s%i.%i.%i%s (%s)", + sprintf(informative_string, "%s%s%s%s %s%i.%i.%i%s (%s)", __gver_prename__, __gver_name__, __gver_postname__, - __gver_preversion__, __gver_major__, __gver_minor__, - __gver_release__, __gver_postversion__, ggetosstring()); + __gver_platform__, __gver_preversion__, __gver_major__, + __gver_minor__, __gver_release__, __gver_postversion__, + ggetosstring()); return informative_string; }