mirror of
https://github.com/moparisthebest/hexchat
synced 2024-11-25 10:42:18 -05:00
sysinfo: Don't confuse build architecture with CPU architecture.
This commit is contained in:
parent
5b8cc683f3
commit
4f08b0b386
@ -99,6 +99,12 @@ static void print_info (void)
|
|||||||
char *memory_info;
|
char *memory_info;
|
||||||
int channel_type;
|
int channel_type;
|
||||||
|
|
||||||
|
#ifdef _WIN64
|
||||||
|
const char *build_arch = "x64";
|
||||||
|
#else
|
||||||
|
const char *build_arch = "x86";
|
||||||
|
#endif
|
||||||
|
|
||||||
/* Load information if not already loaded */
|
/* Load information if not already loaded */
|
||||||
|
|
||||||
if (cpu_arch == 0)
|
if (cpu_arch == 0)
|
||||||
@ -149,10 +155,9 @@ static void print_info (void)
|
|||||||
{
|
{
|
||||||
hexchat_commandf (
|
hexchat_commandf (
|
||||||
ph,
|
ph,
|
||||||
"ME ** SysInfo ** Client: HexChat %s (x%d) ** OS: %s ** CPU: %s ** RAM: %s ** VGA: %s ** Uptime: %.2f Hours **",
|
"ME ** SysInfo ** Client: HexChat %s (%s) ** OS: %s(x%d) ** CPU: %s ** RAM: %s ** VGA: %s ** Uptime: %.2f Hours **",
|
||||||
hexchat_get_info (ph, "version"),
|
hexchat_get_info (ph, "version"), build_arch,
|
||||||
cpu_arch,
|
os_name, cpu_arch,
|
||||||
os_name,
|
|
||||||
cpu_info,
|
cpu_info,
|
||||||
memory_info,
|
memory_info,
|
||||||
vga_name,
|
vga_name,
|
||||||
@ -160,8 +165,8 @@ static void print_info (void)
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
hexchat_printf (ph, " * Client: HexChat %s (x%d)\n", hexchat_get_info (ph, "version"), cpu_arch);
|
hexchat_printf (ph, " * Client: HexChat %s (%s)\n", hexchat_get_info (ph, "version"), build_arch);
|
||||||
hexchat_printf (ph, " * OS: %s\n", os_name);
|
hexchat_printf (ph, " * OS: %s(x%d)\n", os_name, cpu_arch);
|
||||||
hexchat_printf (ph, " * CPU: %s\n", cpu_info);
|
hexchat_printf (ph, " * CPU: %s\n", cpu_info);
|
||||||
hexchat_printf (ph, " * RAM: %s\n", memory_info);
|
hexchat_printf (ph, " * RAM: %s\n", memory_info);
|
||||||
hexchat_printf (ph, " * VGA: %s\n", vga_name);
|
hexchat_printf (ph, " * VGA: %s\n", vga_name);
|
||||||
|
Loading…
Reference in New Issue
Block a user