diff options
| author | Lioncash <mathew1800@gmail.com> | 2017-01-28 06:07:23 -0500 |
|---|---|---|
| committer | Lioncash <mathew1800@gmail.com> | 2017-01-28 06:07:25 -0500 |
| commit | be3f9f7431b2e8befec6f6de198293313bcc0241 (patch) | |
| tree | 52816448bb81804b94f22b2d359e15a2bcf7ee05 /Source/Core | |
| parent | 5da565a1a1b3b148a41a483e1052f31b5698cf3c (diff) | |
DSPEmitter: Fix -Wreorder warnings
Diffstat (limited to 'Source/Core')
| -rw-r--r-- | Source/Core/Core/DSP/Jit/DSPEmitter.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/Core/DSP/Jit/DSPEmitter.cpp b/Source/Core/Core/DSP/Jit/DSPEmitter.cpp index ef73adf24f..688846bf23 100644 --- a/Source/Core/Core/DSP/Jit/DSPEmitter.cpp +++ b/Source/Core/Core/DSP/Jit/DSPEmitter.cpp @@ -31,8 +31,8 @@ constexpr size_t MAX_BLOCK_SIZE = 250; constexpr u16 DSP_IDLE_SKIP_CYCLES = 0x1000; DSPEmitter::DSPEmitter() - : m_block_links(MAX_BLOCKS), m_block_size(MAX_BLOCKS), m_blocks(MAX_BLOCKS), - m_compile_status_register{SR_INT_ENABLE | SR_EXT_INT_ENABLE} + : m_compile_status_register{SR_INT_ENABLE | SR_EXT_INT_ENABLE}, m_blocks(MAX_BLOCKS), + m_block_size(MAX_BLOCKS), m_block_links(MAX_BLOCKS) { AllocCodeSpace(COMPILED_CODE_SIZE); |
