Skip to content

Commit

Permalink
EXI_DeviceMemoryCard: Get rid of magic number in SetCS()
Browse files Browse the repository at this point in the history
Keeps the code consistent with other usages of the same constant
  • Loading branch information
lioncash committed Apr 1, 2018
1 parent d8dd7b9 commit 8fbd6e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Core/Core/HW/EXI/EXI_DeviceMemoryCard.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@ void CEXIMemoryCard::SetCS(int cs)
{
int count = m_uPosition - 5;
int i = 0;
status &= ~0x80;
status &= ~MC_STATUS_BUSY;

while (count--)
{
Expand Down

0 comments on commit 8fbd6e2

Please sign in to comment.