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
This commit is contained in:
Shawn Hoffman 2009-04-28 01:02:48 +00:00
parent adb791dd58
commit daf17ed27f
1 changed files with 2 additions and 3 deletions

View File

@ -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 ...