Skip to content

Commit

Permalink
Merge pull request #13316 from hoogmin/minor-first
Browse files Browse the repository at this point in the history
Refactor: infinite loop based on Dolphin's style guidelines
  • Loading branch information
JMC47 authored Jan 30, 2025
2 parents b5a0d29 + 391dae7 commit cd39937
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Core/Core/HW/EXI/BBA/TAP_Win32.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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];
Expand Down

0 comments on commit cd39937

Please sign in to comment.