mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-10 23:02:08 +00:00
Printf doesn't work with FString on GCC
This commit is contained in:
parent
b18b71c065
commit
eb7548d639
1 changed files with 1 additions and 1 deletions
|
@ -1338,7 +1338,7 @@ DEFINE_ACTION_FUNCTION(_Console, Printf)
|
||||||
{
|
{
|
||||||
PARAM_PROLOGUE;
|
PARAM_PROLOGUE;
|
||||||
FString s = FStringFormat(param, defaultparam, numparam, ret, numret);
|
FString s = FStringFormat(param, defaultparam, numparam, ret, numret);
|
||||||
Printf("%s\n", s);
|
Printf("%s\n", s.GetChars());
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue