mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-28 11:49:06 +00:00
VideoBackendBase: Convert EFBAccessType into an enum class
This commit is contained in:
parent
a2caa0d733
commit
5b461f50af
12 changed files with 75 additions and 53 deletions
|
@ -23,12 +23,12 @@ enum FieldType
|
|||
FIELD_EVEN = 1,
|
||||
};
|
||||
|
||||
enum EFBAccessType
|
||||
enum class EFBAccessType
|
||||
{
|
||||
PEEK_Z = 0,
|
||||
POKE_Z,
|
||||
PEEK_COLOR,
|
||||
POKE_COLOR
|
||||
PeekZ,
|
||||
PokeZ,
|
||||
PeekColor,
|
||||
PokeColor
|
||||
};
|
||||
|
||||
struct SCPFifoStruct
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue