mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-20 19:44:57 +00:00
Merge pull request #1410 from lioncash/enum
EXI_Channel: Use an enum for read/write modes
This commit is contained in:
commit
64b09582c6
1 changed files with 6 additions and 3 deletions
|
@ -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…
Add table
Reference in a new issue