mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-14 00:07:15 +00:00
Add missing uint cast
This commit is contained in:
parent
e32bfcde2e
commit
4c45aa99af
1 changed files with 3 additions and 3 deletions
|
@ -59,11 +59,11 @@ namespace PKHeX.Core
|
|||
|
||||
private static bool IsHiragana(IEnumerable<char> chars)
|
||||
{
|
||||
foreach (var ch_0 in chars)
|
||||
foreach (var c in chars)
|
||||
{
|
||||
if ((ch_0 - 0x3041) < 0x53)
|
||||
if ((uint)(c - 0x3041) < 0x53)
|
||||
return true;
|
||||
if ((ch_0 - 0x30A1) < 0x56)
|
||||
if ((uint)(c - 0x30A1) < 0x56)
|
||||
return false;
|
||||
}
|
||||
return true;
|
||||
|
|
Loading…
Reference in a new issue