diff options
| author | Jordan Woyak <jordan.woyak@gmail.com> | 2025-04-16 00:19:40 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-04-16 00:19:40 -0500 |
| commit | 8bfde300f403db85e105533b50a97a3b19af3de2 (patch) | |
| tree | 9b2cb1661b41663f52df1bc73ac745e491abbd97 /Source/Core | |
| parent | 5af315ec178d550d002ba1c4a4692fc1d6c06867 (diff) | |
| parent | c4f906bcd9e05ed1efc05915ff2c44768df19cbe (diff) | |
Merge pull request #13519 from tygyh/Replace-definitions-with-constant-expressions
Replace definitions with constant expressions - Core/HW/EXI/BBA/TAP_Win32
Diffstat (limited to 'Source/Core')
| -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 |
