convert tabs to spaces

This commit is contained in:
Bram Verweij 2022-12-24 12:36:06 +01:00
parent fc281a1f96
commit e3658ab0ef

View File

@ -1100,14 +1100,14 @@ static void check_variables(CoreParameter &coreParam)
for (int i = 0; i < 12; i++)
{
if (i && i % 3 == 0)
{
{
g_Config.proAdhocServer += '.';
leadingZero = true;
}
leadingZero = true;
}
int addressPt = ppsspp_pro_ad_hoc_ipv4[i];
if (addressPt || i % 3 == 2)
leadingZero = false; // We are either non-zero or the last digit of a byte
if (addressPt || i % 3 == 2)
leadingZero = false; // We are either non-zero or the last digit of a byte
if (! leadingZero)
g_Config.proAdhocServer += static_cast<char>('0' + addressPt);