cemu_graphic_packs/functions.php

3 lines
113 B
PHP

<?php
function always_decimal_format($x) { return (intval($x) == $x ? number_format($x, 1, '.', '') : $x ); }
?>