mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-09-12 04:22:15 +00:00
VideoBackendBase: Convert FieldType into an enum class
This commit is contained in:
parent
5b461f50af
commit
940aa6f32d
2 changed files with 35 additions and 26 deletions
|
@ -17,10 +17,10 @@ class Mapping;
|
|||
}
|
||||
class PointerWrap;
|
||||
|
||||
enum FieldType
|
||||
enum class FieldType
|
||||
{
|
||||
FIELD_ODD = 0,
|
||||
FIELD_EVEN = 1,
|
||||
Odd,
|
||||
Even,
|
||||
};
|
||||
|
||||
enum class EFBAccessType
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue