mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-28 19:58:53 +00:00
CPUDetect: Make CPUVendor enum an enum class
Avoids dumping the enum contents into the global namespace.
This commit is contained in:
parent
bf8ffe5bfb
commit
fd9eab73fb
3 changed files with 11 additions and 11 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue