mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2025-02-20 18:32:01 +00:00
testcase for print(ftos(pawn.mema)) slightly changed, now not using a temporary location
This commit is contained in:
parent
fda4687ece
commit
3f234591da
1 changed files with 8 additions and 0 deletions
|
@ -100,11 +100,19 @@ FUNCTION(main, TYPE_VOID);
|
|||
STATE(ASSIGN(STOREP_F, ENTFIELD(pawn, mema), f5));
|
||||
CALL(ftos)
|
||||
CALLPARAM(ENTFIELD(pawn, mema))
|
||||
#if 0
|
||||
ENDCALLWITH(output, STATE(ASSIGN(STORE_F, vi, output)));
|
||||
|
||||
CALL(print)
|
||||
CALLPARAM(vi)
|
||||
ENDCALL();
|
||||
#else
|
||||
ENDCALLWITH(output,
|
||||
CALL(print)
|
||||
CALLPARAM(output)
|
||||
ENDCALL();
|
||||
);
|
||||
#endif
|
||||
|
||||
ENDFUNCTION(main);
|
||||
|
||||
|
|
Loading…
Reference in a new issue