mirror of
https://github.com/isledecomp/isle-portable.git
synced 2025-04-27 23:03:35 -04:00
Use SDL_isdigit instead of isdigit
This commit is contained in:
parent
19bf6166ee
commit
7ee594b3bd
1 changed files with 1 additions and 1 deletions
|
@ -312,7 +312,7 @@ void LegoAnimPresenter::FUN_100695c0()
|
|||
LegoU32 len = strlen(actorName);
|
||||
strcpy(lodName, actorName);
|
||||
|
||||
for (LegoChar* i = &lodName[len - 1]; isdigit(*i) || *i == '_'; i--) {
|
||||
for (LegoChar* i = &lodName[len - 1]; SDL_isdigit(*i) || *i == '_'; i--) {
|
||||
*i = '\0';
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue