mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-06-13 00:58:29 +02:00
CPUDetect: Make CPUVendor enum an enum class
Avoids dumping the enum contents into the global namespace.
This commit is contained in:
@ -57,7 +57,7 @@ void CPUInfo::Detect()
|
||||
OS64bit = true;
|
||||
CPU64bit = true;
|
||||
Mode64bit = true;
|
||||
vendor = VENDOR_ARM;
|
||||
vendor = CPUVendor::ARM;
|
||||
|
||||
// Get the information about the CPU
|
||||
num_cores = sysconf(_SC_NPROCESSORS_CONF);
|
||||
|
Reference in New Issue
Block a user