summaryrefslogtreecommitdiffstats
path: root/src/video_core/engines/maxwell_3d.cpp
diff options
context:
space:
mode:
authorSubv <subv2112@gmail.com>2018-07-24 20:54:12 +0200
committerSubv <subv2112@gmail.com>2018-07-24 20:54:12 +0200
commit8f2c4191ab85da496175748728957af23c97252b (patch)
treee930907db8529527b1c85610eb7c7dd673f702bd /src/video_core/engines/maxwell_3d.cpp
parentMerge pull request #798 from lioncash/const (diff)
downloadyuzu-8f2c4191ab85da496175748728957af23c97252b.tar
yuzu-8f2c4191ab85da496175748728957af23c97252b.tar.gz
yuzu-8f2c4191ab85da496175748728957af23c97252b.tar.bz2
yuzu-8f2c4191ab85da496175748728957af23c97252b.tar.lz
yuzu-8f2c4191ab85da496175748728957af23c97252b.tar.xz
yuzu-8f2c4191ab85da496175748728957af23c97252b.tar.zst
yuzu-8f2c4191ab85da496175748728957af23c97252b.zip
Diffstat (limited to 'src/video_core/engines/maxwell_3d.cpp')
-rw-r--r--src/video_core/engines/maxwell_3d.cpp8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/video_core/engines/maxwell_3d.cpp b/src/video_core/engines/maxwell_3d.cpp
index d7328ff39..0e205ed72 100644
--- a/src/video_core/engines/maxwell_3d.cpp
+++ b/src/video_core/engines/maxwell_3d.cpp
@@ -75,14 +75,6 @@ void Maxwell3D::WriteReg(u32 method, u32 value, u32 remaining_params) {
ProcessMacroUpload(value);
break;
}
- case MAXWELL3D_REG_INDEX(code_address.code_address_high):
- case MAXWELL3D_REG_INDEX(code_address.code_address_low): {
- // Note: For some reason games (like Puyo Puyo Tetris) seem to write 0 to the CODE_ADDRESS
- // register, we do not currently know if that's intended or a bug, so we assert it lest
- // stuff breaks in other places (like the shader address calculation).
- ASSERT_MSG(regs.code_address.CodeAddress() == 0, "Unexpected CODE_ADDRESS register value.");
- break;
- }
case MAXWELL3D_REG_INDEX(const_buffer.cb_data[0]):
case MAXWELL3D_REG_INDEX(const_buffer.cb_data[1]):
case MAXWELL3D_REG_INDEX(const_buffer.cb_data[2]):