summaryrefslogtreecommitdiff
path: root/Source/Core
diff options
context:
space:
mode:
authorShawn Hoffman <godisgovernment@gmail.com>2009-04-28 01:02:48 +0000
committerShawn Hoffman <godisgovernment@gmail.com>2009-04-28 01:02:48 +0000
commitdaf17ed27f1c4d5b5da700d2106d475b95f64f9a (patch)
treed28f56ee5bea61c0266896aa5125cd88e11ff487 /Source/Core
parentadb791dd587eb81d2d6a2210d4cdcb1c68600e71 (diff)
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
Diffstat (limited to 'Source/Core')
-rw-r--r--Source/Core/Core/Src/HW/VideoInterface.cpp5
1 files 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 ...