mirror of
https://github.com/hexchat/hexchat.git
synced 2024-11-10 05:02:50 +01: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;
|
||||
int channel_type;
|
||||
|
||||
#ifdef _WIN64
|
||||
const char *build_arch = "x64";
|
||||
#else
|
||||
const char *build_arch = "x86";
|
||||
#endif
|
||||
|
||||
/* Load information if not already loaded */
|
||||
|
||||
if (cpu_arch == 0)
|
||||
@ -149,10 +155,9 @@ static void print_info (void)
|
||||
{
|
||||
hexchat_commandf (
|
||||
ph,
|
||||
"ME ** SysInfo ** Client: HexChat %s (x%d) ** OS: %s ** CPU: %s ** RAM: %s ** VGA: %s ** Uptime: %.2f Hours **",
|
||||
hexchat_get_info (ph, "version"),
|
||||
cpu_arch,
|
||||
os_name,
|
||||
"ME ** SysInfo ** Client: HexChat %s (%s) ** OS: %s(x%d) ** CPU: %s ** RAM: %s ** VGA: %s ** Uptime: %.2f Hours **",
|
||||
hexchat_get_info (ph, "version"), build_arch,
|
||||
os_name, cpu_arch,
|
||||
cpu_info,
|
||||
memory_info,
|
||||
vga_name,
|
||||
@ -160,8 +165,8 @@ static void print_info (void)
|
||||
}
|
||||
else
|
||||
{
|
||||
hexchat_printf (ph, " * Client: HexChat %s (x%d)\n", hexchat_get_info (ph, "version"), cpu_arch);
|
||||
hexchat_printf (ph, " * OS: %s\n", os_name);
|
||||
hexchat_printf (ph, " * Client: HexChat %s (%s)\n", hexchat_get_info (ph, "version"), build_arch);
|
||||
hexchat_printf (ph, " * OS: %s(x%d)\n", os_name, cpu_arch);
|
||||
hexchat_printf (ph, " * CPU: %s\n", cpu_info);
|
||||
hexchat_printf (ph, " * RAM: %s\n", memory_info);
|
||||
hexchat_printf (ph, " * VGA: %s\n", vga_name);
|
||||
|
Loading…
Reference in New Issue
Block a user