summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/cpu/psx
diff options
context:
space:
mode:
author smf- <smf-@users.noreply.github.com>2013-04-25 12:02:11 +0000
committer smf- <smf-@users.noreply.github.com>2013-04-25 12:02:11 +0000
commit0ce02e38e643e4b2cb65afbe920b5b71778815a9 (patch)
tree95e3ca9903ad3887502f8168ce4651c6485bef17 /src/emu/cpu/psx
parentba02fc13743e37b553978db8e2967b4d44e6671b (diff)
make it clearer that you can't write to LZCR (nw)
Diffstat (limited to 'src/emu/cpu/psx')
-rw-r--r--src/emu/cpu/psx/gte.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/emu/cpu/psx/gte.c b/src/emu/cpu/psx/gte.c
index 0e26942bbd0..20fe25088d7 100644
--- a/src/emu/cpu/psx/gte.c
+++ b/src/emu/cpu/psx/gte.c
@@ -235,8 +235,7 @@ void gte::setcp2dr( UINT32 pc, int reg, UINT32 value )
break;
case 31:
- value = m_cp2dr[ reg ].d;
- break;
+ return;
}
m_cp2dr[ reg ].d = value;