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:
parent
adb791dd58
commit
daf17ed27f
|
@ -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 ...
|
||||
|
|
Loading…
Reference in New Issue