diff options
| author | Javier Martinez <hoogmin@gmail.com> | 2025-01-30 14:36:22 -0500 |
|---|---|---|
| committer | Javier Martinez <hoogmin@gmail.com> | 2025-01-30 14:36:22 -0500 |
| commit | 391dae718d43e17bf8c6ce9ad4594f5dc6f31bb0 (patch) | |
| tree | c2cef7521d877b4fc530e6d84f7a7d4f19116101 /Source | |
| parent | b5a0d293ae60ff979961589bbfaa18dce0958cc8 (diff) | |
Refactor: infinite loop based on Dolphin's style guidelines
Diffstat (limited to 'Source')
| -rw-r--r-- | Source/Core/Core/HW/EXI/BBA/TAP_Win32.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/Core/HW/EXI/BBA/TAP_Win32.cpp b/Source/Core/Core/HW/EXI/BBA/TAP_Win32.cpp index bbfdfa19de..fc6051969d 100644 --- a/Source/Core/Core/HW/EXI/BBA/TAP_Win32.cpp +++ b/Source/Core/Core/HW/EXI/BBA/TAP_Win32.cpp @@ -24,7 +24,7 @@ bool IsTAPDevice(const TCHAR* guid) if (status != ERROR_SUCCESS) return false; - for (;;) + while (true) { TCHAR enum_name[256]; TCHAR unit_string[256]; |
