Widepid contains platform again

This commit is contained in:
Stas Degteff 2005-10-11 17:43:38 +00:00
parent cbde69e90a
commit 4815bce313
2 changed files with 6 additions and 3 deletions

View File

@ -10,6 +10,8 @@ ______________________________________________________________________
Notes for GoldED+ 1.1.5, /snapshot/ Notes for GoldED+ 1.1.5, /snapshot/
______________________________________________________________________ ______________________________________________________________________
+ Macro '@widepid' contains platform ID again.
! Golded+ now may be compiled on 64bit platforms. ! Golded+ now may be compiled on 64bit platforms.
+ Fix P4 and IA64 cpu detection. + Fix P4 and IA64 cpu detection.

View File

@ -216,10 +216,11 @@ const char* get_informative_string(void) {
static char informative_string[356] = ""; static char informative_string[356] = "";
if(informative_string[0] == NUL) 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_prename__, __gver_name__, __gver_postname__,
__gver_preversion__, __gver_major__, __gver_minor__, __gver_platform__, __gver_preversion__, __gver_major__,
__gver_release__, __gver_postversion__, ggetosstring()); __gver_minor__, __gver_release__, __gver_postversion__,
ggetosstring());
return informative_string; return informative_string;
} }