Skip to content
Snippets Groups Projects
Commit 3d9fea57 authored by Logan Aerl Arias's avatar Logan Aerl Arias
Browse files

make M_StringOnlyHasDigits return true if all tests pass

parent c267ee03
Branches
No related tags found
1 merge request!2224Player spawning and respawning related features
Pipeline #2572 passed
......@@ -2270,6 +2270,8 @@ boolean M_StringOnlyHasDigits(const char *s)
if (!isdigit(*s++))
return false;
}
return true;
}
// Converts a string containing a whole number into an int. Returns false if the conversion failed.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment