mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2024-12-23 10:09:43 +01:00
Change is_number() iterator type to size_t
This is to be consistent with is_positive_num().
This commit is contained in:
parent
7ea70ad1d6
commit
62533300b0
1 changed files with 1 additions and 1 deletions
|
@ -272,7 +272,7 @@ bool is_number(const char* str)
|
|||
return false;
|
||||
}
|
||||
|
||||
for (int i = 1; str[i] != '\0'; i++)
|
||||
for (size_t i = 1; str[i] != '\0'; i++)
|
||||
{
|
||||
if (!SDL_isdigit(str[i]))
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue