mirror of
https://github.com/ryujinx-mirror/ryujinx.git
synced 2025-01-15 20:30:04 -06:00
parent
3b20080637
commit
6982282cc8
@ -183,11 +183,10 @@ namespace Ryujinx.HLE.HOS.Services.Time.TimeZone
|
|||||||
{
|
{
|
||||||
int i = namePosition;
|
int i = namePosition;
|
||||||
|
|
||||||
char c = name[i];
|
char c;
|
||||||
|
|
||||||
while (c != '\0' && !char.IsDigit(c) && c != ',' && c != '-' && c != '+')
|
while ((c = name[i]) != '\0' && !char.IsDigit(c) && c != ',' && c != '-' && c != '+')
|
||||||
{
|
{
|
||||||
c = name[i];
|
|
||||||
i++;
|
i++;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user