diff options
| author | Dr. Dystopia <jonis9898@hotmail.com> | 2025-04-15 08:21:13 +0200 |
|---|---|---|
| committer | Dr. Dystopia <jonis9898@hotmail.com> | 2025-04-15 12:26:16 +0200 |
| commit | c4f906bcd9e05ed1efc05915ff2c44768df19cbe (patch) | |
| tree | 77090d079b2bafb38869ac6f6a2c238f3fc1a8a9 /Source | |
| parent | 4f210df86a2d2362ef8087cf81b817b18c3d32e9 (diff) | |
Replace definitions with constant expressions - Core/HW/EXI/BBA/TAP_Win32
Diffstat (limited to 'Source')
| -rw-r--r-- | Source/Core/Core/HW/EXI/BBA/TAP_Win32.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/Core/HW/EXI/BBA/TAP_Win32.h b/Source/Core/Core/HW/EXI/BBA/TAP_Win32.h index dd0eba3235..ec62f7a1e9 100644 --- a/Source/Core/Core/HW/EXI/BBA/TAP_Win32.h +++ b/Source/Core/Core/HW/EXI/BBA/TAP_Win32.h @@ -36,8 +36,8 @@ #include <windows.h> #include <stdlib.h> #include <winioctl.h> -#define TAP_WIN32_MIN_MAJOR 9 -#define TAP_WIN32_MIN_MINOR 0 +constexpr int TAP_WIN32_MIN_MAJOR = 9; +constexpr int TAP_WIN32_MIN_MINOR = 0; //============= // TAP IOCTLs |
