1
0
Fork 0
mirror of https://github.com/dolphin-emu/dolphin.git synced 2025-03-06 21:00:21 +01:00

Merge pull request #13316 from hoogmin/minor-first

Refactor: infinite loop based on Dolphin's style guidelines
This commit is contained in:
JMC47 2025-01-30 16:27:21 -05:00 committed by GitHub
commit cd3993708f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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];