diff options
Diffstat (limited to 'src/conout.h')
| -rw-r--r-- | src/conout.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/conout.h b/src/conout.h index 3c6685b..73d75b1 100644 --- a/src/conout.h +++ b/src/conout.h @@ -123,7 +123,7 @@ inline STR<16> con_to_setting_str( bool setting ) { inline STR<16> con_to_setting_str( F32 setting ) { char buf[16]; - snprintf( buf, 16, "[%.02f]", (I32)( setting * 100 ) ); + snprintf( buf, 16, "[%.02f]", setting ); return buf; } |
