mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-30 22:27:51 +00:00
Merge pull request #7123 from lioncash/enum
DSPCore: Convert core type enum into an enum class
This commit is contained in:
commit
0ee9b884ca
3 changed files with 9 additions and 9 deletions
|
|
@ -153,10 +153,10 @@ static bool FillDSPInitOptions(DSPInitOptions* opts)
|
|||
if (!LoadDSPRom(opts->coef_contents.data(), coef_file, DSP_COEF_BYTE_SIZE))
|
||||
return false;
|
||||
|
||||
opts->core_type = DSPInitOptions::CORE_INTERPRETER;
|
||||
opts->core_type = DSPInitOptions::CoreType::Interpreter;
|
||||
#ifdef _M_X86
|
||||
if (SConfig::GetInstance().m_DSPEnableJIT)
|
||||
opts->core_type = DSPInitOptions::CORE_JIT;
|
||||
opts->core_type = DSPInitOptions::CoreType::JIT64;
|
||||
#endif
|
||||
|
||||
if (SConfig::GetInstance().m_DSPCaptureLog)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue