38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
PRINT(GREEN, @"Operating system version: %@",
[OFSystemInfo operatingSystemVersion]);
#ifdef OF_HAVE_FILES
PRINT(GREEN, @"User data path: %@", [OFSystemInfo userDataPath]);
PRINT(GREEN, @"User config path: %@", [OFSystemInfo userDataPath]);
#endif
PRINT(GREEN, @"CPU vendor: %@", [OFSystemInfo CPUVendor]);
#if defined(OF_X86_64) || defined(OF_X86)
PRINT(GREEN, @"Supports MMX: %d", [OFSystemInfo supportsMMX]);
|
|
|
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
PRINT(GREEN, @"Operating system version: %@",
[OFSystemInfo operatingSystemVersion]);
#ifdef OF_HAVE_FILES
PRINT(GREEN, @"User data path: %@", [OFSystemInfo userDataPath]);
PRINT(GREEN, @"User config path: %@", [OFSystemInfo userConfigPath]);
#endif
PRINT(GREEN, @"CPU vendor: %@", [OFSystemInfo CPUVendor]);
#if defined(OF_X86_64) || defined(OF_X86)
PRINT(GREEN, @"Supports MMX: %d", [OFSystemInfo supportsMMX]);
|