mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-28 21:08:04 +03:00
Merge pull request #13316 from hoogmin/minor-first
Refactor: infinite loop based on Dolphin's style guidelines
This commit is contained in:
commit
cd3993708f
1 changed files with 1 additions and 1 deletions
|
@ -24,7 +24,7 @@ bool IsTAPDevice(const TCHAR* guid)
|
||||||
if (status != ERROR_SUCCESS)
|
if (status != ERROR_SUCCESS)
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
for (;;)
|
while (true)
|
||||||
{
|
{
|
||||||
TCHAR enum_name[256];
|
TCHAR enum_name[256];
|
||||||
TCHAR unit_string[256];
|
TCHAR unit_string[256];
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue