Skip to content

Commit

Permalink
Input improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
drhelius committed Jul 25, 2024
1 parent c721375 commit daf14a8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/input_inline.h
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,10 @@ inline void Input::UpdateRegister()
m_register = 0x30;

if (m_pce_jap)
SetBit(m_register, 6);
m_register = SetBit(m_register, 6);

if (m_cdrom)
SetBit(m_register, 7);
m_register = SetBit(m_register, 7);

if (!m_clr)
{
Expand Down

0 comments on commit daf14a8

Please sign in to comment.