blob: 52f170390260e8860deb9c933b8bbefd503a49fd (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
--- libswirl/gui/gui_settings_about.cpp.orig 2020-10-18 11:22:48 UTC
+++ libswirl/gui/gui_settings_about.cpp
@@ -40,13 +40,13 @@ void gui_settings_about()
{
ImGui::Text("CPU: %s",
#if HOST_CPU == CPU_X86
- "x86"
+ "i386"
#elif HOST_CPU == CPU_ARM
"ARM"
#elif HOST_CPU == CPU_MIPS
"MIPS"
#elif HOST_CPU == CPU_X64
- "x86/64"
+ "amd64"
#elif HOST_CPU == CPU_GENERIC
"Generic"
#elif HOST_CPU == CPU_ARM64
@@ -88,4 +88,4 @@ void gui_settings_about()
ImGui::PopStyleVar();
ImGui::EndTabItem();
}
-}
\ No newline at end of file
+}
|