From daf17ed27f1c4d5b5da700d2106d475b95f64f9a Mon Sep 17 00:00:00 2001 From: Shawn Hoffman Date: Tue, 28 Apr 2009 01:02:48 +0000 Subject: [PATCH] replace actually changing VI beam position regs on a write, instead just log it. git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@3097 8ced0084-cf51-0410-be5f-012b33b47a6e --- Source/Core/Core/Src/HW/VideoInterface.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Source/Core/Core/Src/HW/VideoInterface.cpp b/Source/Core/Core/Src/HW/VideoInterface.cpp index d9fb7023db..4f660e5e84 100644 --- a/Source/Core/Core/Src/HW/VideoInterface.cpp +++ b/Source/Core/Core/Src/HW/VideoInterface.cpp @@ -320,12 +320,11 @@ void Write16(const u16 _iValue, const u32 _iAddress) break; case VI_VERTICAL_BEAM_POSITION: - // writing the beam position goes against yagcd, let's cross our fingers - VerticalBeamPos = _iValue; + WARN_LOG(VIDEOINTERFACE, "Change Vertical Beam Position to 0x%04x - Not documented or implemented", _iValue); break; case VI_HORIZONTAL_BEAM_POSITION: - HorizontalBeamPos = _iValue; + WARN_LOG(VIDEOINTERFACE, "Change Horizontal Beam Position to 0x%04x - Not documented or implemented", _iValue); break; // RETRACE STUFF ...