mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-15 05:47:56 -07:00
Merge pull request #1410 from lioncash/enum
EXI_Channel: Use an enum for read/write modes
This commit is contained in:
commit
64b09582c6
@ -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),
|
||||
|
Loading…
Reference in New Issue
Block a user