Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Preset HBeamPos to -1. Fixes NTSC-U N64 VC games.
Fixes issue 5950.
  • Loading branch information
skidau committed Jan 29, 2013
1 parent 8ab2332 commit 2ab1ccc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Source/Core/Core/Src/HW/VideoInterface.cpp
Expand Up @@ -144,8 +144,8 @@ void Preset(bool _bNTSC)
m_HorizontalStepping.FbSteps = 40;
m_HorizontalStepping.FieldSteps = 40;

m_HBeamPos = 0;
m_VBeamPos = 0;
m_HBeamPos = -1; // NTSC-U N64 VC games check for a non-zero HBeamPos
m_VBeamPos = 0; // RG4JC0 checks for a zero VBeamPos

// 54MHz, capable of progressive scan
m_Clock = Core::g_CoreStartupParameter.bProgressive;
Expand Down

0 comments on commit 2ab1ccc

Please sign in to comment.