mirror of
https://github.com/OpenTTD/OpenTTD.git
synced 2025-03-06 14:27:16 +00:00
(svn r2277) - Codechange: change sscanf() into stroul() Which Does The Right Thing tm. Thanks tron
This commit is contained in:
parent
81474c2623
commit
0618a6d0df
20
console.c
20
console.c
@ -448,17 +448,19 @@ void IConsoleError(const char* string)
|
||||
*/
|
||||
bool GetArgumentInteger(uint32 *value, const char *arg)
|
||||
{
|
||||
int result = sscanf(arg, "%u", value);
|
||||
char *endptr;
|
||||
|
||||
/* Hexadecimal numbers start with 0x, so at least the first number has been parsed */
|
||||
if (result == 1 && arg[0] == '0' && (arg[1] == 'x' || arg[1] == 'X'))
|
||||
result = sscanf(arg, "%x", value);
|
||||
if (strcmp(arg, "on") == 0 || strcmp(arg, "true") == 0) {
|
||||
*value = 1;
|
||||
return true;
|
||||
}
|
||||
if (strcmp(arg, "off") == 0 || strcmp(arg, "false") == 0) {
|
||||
*value = 0;
|
||||
return true;
|
||||
}
|
||||
|
||||
if (result == 0 && (strcmp(arg, "on") == 0 || strcmp(arg, "true") == 0 )) {*value = 1; result = 1;}
|
||||
|
||||
if (result == 0 && (strcmp(arg, "off") == 0 || strcmp(arg, "false") == 0)) {*value = 0; result = 1;}
|
||||
|
||||
return !!result;
|
||||
*value = strtoul(arg, &endptr, 0);
|
||||
return (arg == endptr) ? false : true;
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user