mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-13 07:57:52 +00:00
- fix bad return type.
This commit is contained in:
parent
d7da2d838f
commit
8025f02935
1 changed files with 1 additions and 1 deletions
|
@ -252,7 +252,7 @@ DEFINE_ACTION_FUNCTION_NATIVE(FStringStruct, ToInt, StringToInt)
|
||||||
ACTION_RETURN_INT(self->ToLong(base));
|
ACTION_RETURN_INT(self->ToLong(base));
|
||||||
}
|
}
|
||||||
|
|
||||||
static int StringToDbl(FString *self)
|
static double StringToDbl(FString *self)
|
||||||
{
|
{
|
||||||
return self->ToDouble();
|
return self->ToDouble();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue