mirror of
https://github.com/cemu-project/cemu_graphic_packs.git
synced 2025-02-18 11:06:20 +01:00
3 lines
113 B
PHP
3 lines
113 B
PHP
![]() |
<?php
|
||
|
function always_decimal_format($x) { return (intval($x) == $x ? number_format($x, 1, '.', '') : $x ); }
|
||
|
?>
|