mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
VideoBackendBase: Convert EFBAccessType into an enum class
This commit is contained in:
@ -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
|
||||
|
Reference in New Issue
Block a user