diff options
| author | bunnei <bunneidev@gmail.com> | 2020-08-27 00:16:10 -0400 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-08-27 00:16:10 -0400 | 
| commit | 9864da7d43cd6fca1d48762fde7405269b821c68 (patch) | |
| tree | 43e599f926e383fa56a85e09f138c3c257ab6a48 /src/video_core | |
| parent | 1bb8c27a70657eb36cc6b4860f9285cbff736a00 (diff) | |
| parent | dcc5562cd5a9734de9d4473e984a1bbc260e1a63 (diff) | |
Merge pull request #4524 from lioncash/memory-log
shader/memory: Amend UNIMPLEMENTED_IF_MSG without a message
Diffstat (limited to 'src/video_core')
| -rw-r--r-- | src/video_core/shader/decode/memory.cpp | 3 | 
1 files changed, 2 insertions, 1 deletions
| diff --git a/src/video_core/shader/decode/memory.cpp b/src/video_core/shader/decode/memory.cpp index e4739394d..e2bba88dd 100644 --- a/src/video_core/shader/decode/memory.cpp +++ b/src/video_core/shader/decode/memory.cpp @@ -386,7 +386,8 @@ u32 ShaderIR::DecodeMemory(NodeBlock& bb, u32 pc) {          break;      }      case OpCode::Id::RED: { -        UNIMPLEMENTED_IF_MSG(instr.red.type != GlobalAtomicType::U32); +        UNIMPLEMENTED_IF_MSG(instr.red.type != GlobalAtomicType::U32, "type={}", +                             static_cast<int>(instr.red.type.Value()));          const auto [real_address, base_address, descriptor] =              TrackGlobalMemory(bb, instr, true, true);          if (!real_address || !base_address) { | 
