summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Angelo Salese <salese_corp_ltd@email.it>2014-11-30 13:42:04 +0100
committer Angelo Salese <salese_corp_ltd@email.it>2014-11-30 13:42:04 +0100
commitc2bb5c742810615aee6eaff856a7a3b4e68521c2 (patch)
tree490b973eb33d332d049706ab3f77191f9b978d96
parent8d02626b285b4f6c2211d2e1f4eff5ef1f24e0c3 (diff)
Minor log removal
-rw-r--r--src/emu/video/stvvdp2.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/emu/video/stvvdp2.c b/src/emu/video/stvvdp2.c
index 7ba64f3044f..b0e5d2be19a 100644
--- a/src/emu/video/stvvdp2.c
+++ b/src/emu/video/stvvdp2.c
@@ -5725,8 +5725,10 @@ READ16_MEMBER ( saturn_state::saturn_vdp2_regs_r )
m_vdp2_regs[offset] = (STV_VDP2_VRAMSZ << 15) |
((0 << 0) & 0xf); // VDP2 version
- if(!space.debugger_access())
- printf("Warning: VDP2 version read\n");
+ /* Games basically r/w the entire VDP2 register area when this is tripped. (example: Silhouette Mirage)
+ Disable log for the time being. */
+ //if(!space.debugger_access())
+ // printf("Warning: VDP2 version read\n");
break;
}