diff options
author | liamwhite <liamwhite@users.noreply.github.com> | 2023-09-02 20:42:42 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-02 20:42:42 +0200 |
commit | 76bddd3673fd960bfb7fd108b0120ae707dde306 (patch) | |
tree | dd38a2ab05cce71665e15ee7c063b69c90e59650 /src/shader_recompiler | |
parent | Merge pull request #11384 from liamwhite/am-shutdown (diff) | |
parent | VideoCore: Implement DispatchIndirect (diff) | |
download | yuzu-76bddd3673fd960bfb7fd108b0120ae707dde306.tar yuzu-76bddd3673fd960bfb7fd108b0120ae707dde306.tar.gz yuzu-76bddd3673fd960bfb7fd108b0120ae707dde306.tar.bz2 yuzu-76bddd3673fd960bfb7fd108b0120ae707dde306.tar.lz yuzu-76bddd3673fd960bfb7fd108b0120ae707dde306.tar.xz yuzu-76bddd3673fd960bfb7fd108b0120ae707dde306.tar.zst yuzu-76bddd3673fd960bfb7fd108b0120ae707dde306.zip |
Diffstat (limited to 'src/shader_recompiler')
-rw-r--r-- | src/shader_recompiler/frontend/maxwell/translate/impl/move_special_register.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/shader_recompiler/frontend/maxwell/translate/impl/move_special_register.cpp b/src/shader_recompiler/frontend/maxwell/translate/impl/move_special_register.cpp index 753c62098..e593132e6 100644 --- a/src/shader_recompiler/frontend/maxwell/translate/impl/move_special_register.cpp +++ b/src/shader_recompiler/frontend/maxwell/translate/impl/move_special_register.cpp @@ -161,7 +161,8 @@ enum class SpecialRegister : u64 { LOG_WARNING(Shader, "(STUBBED) SR_AFFINITY"); return ir.Imm32(0); // This is the default value hardware returns. default: - throw NotImplementedException("S2R special register {}", special_register); + LOG_CRITICAL(Shader, "(STUBBED) Special register {}", special_register); + return ir.Imm32(0); // This is the default value hardware returns. } } } // Anonymous namespace |