diff options
| author | Anthony <Helios747@users.noreply.github.com> | 2019-12-07 18:40:15 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-12-07 18:40:15 -0800 |
| commit | 19ea546a0af6d2a18be61cd2a79380e2735255a5 (patch) | |
| tree | 71f065e77aea4071c981b55c6aa4bc5a0de90f6d /Source/Core/VideoCommon/OpcodeDecoding.h | |
| parent | fdb78b64e18baaaf1c8851fde3b5ee1d1da4d775 (diff) | |
| parent | 1f46a6a64bfaade4550276879b475511fd11f136 (diff) | |
Merge pull request #8511 from lioncash/if-constexpr
VideoCommon/OpcodeDecoding: Make use of if constexpr
Diffstat (limited to 'Source/Core/VideoCommon/OpcodeDecoding.h')
| -rw-r--r-- | Source/Core/VideoCommon/OpcodeDecoding.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/Core/VideoCommon/OpcodeDecoding.h b/Source/Core/VideoCommon/OpcodeDecoding.h index 3d2e5c8361..f3533c3735 100644 --- a/Source/Core/VideoCommon/OpcodeDecoding.h +++ b/Source/Core/VideoCommon/OpcodeDecoding.h @@ -10,6 +10,9 @@ class DataReader; namespace OpcodeDecoder { +// Global flag to signal if FifoRecorder is active. +extern bool g_record_fifo_data; + enum { GX_NOP = 0x00, |
