mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-11 15:22:15 +00:00
- Change the formatting for floating immediates in the dissasembly to %g.
SVN r3917 (scripting)
This commit is contained in:
parent
31ab5ed866
commit
29bc9cbf35
1 changed files with 1 additions and 1 deletions
|
@ -370,7 +370,7 @@ static int print_reg(FILE *out, int col, int arg, int mode, int immshift, const
|
|||
case MODE_KF:
|
||||
if (func != NULL)
|
||||
{
|
||||
return col+printf_wrapper(out, "%f", func->KonstF[arg]);
|
||||
return col+printf_wrapper(out, "%g", func->KonstF[arg]);
|
||||
}
|
||||
return col+printf_wrapper(out, "kf%d", arg);
|
||||
case MODE_KS:
|
||||
|
|
Loading…
Reference in a new issue