Skip to content

Commit

Permalink
EXI_Channel: Use an enum for read/write modes
Browse files Browse the repository at this point in the history
  • Loading branch information
lioncash committed Oct 28, 2014
1 parent 1630b0c commit 88ec3b7
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions Source/Core/Core/HW/EXI_Channel.cpp
Expand Up @@ -12,9 +12,12 @@
#include "Core/HW/ProcessorInterface.h"
#include "Core/PowerPC/PowerPC.h"

#define EXI_READ 0
#define EXI_WRITE 1
#define EXI_READWRITE 2
enum
{
EXI_READ,
EXI_WRITE,
EXI_READWRITE
};

CEXIChannel::CEXIChannel(u32 ChannelId) :
m_DMAMemoryAddress(0),
Expand Down

0 comments on commit 88ec3b7

Please sign in to comment.