diff options
Diffstat (limited to 'src/emu/sound/discrete.c')
-rw-r--r-- | src/emu/sound/discrete.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/sound/discrete.c b/src/emu/sound/discrete.c index 980cf034774..e0998a271d6 100644 --- a/src/emu/sound/discrete.c +++ b/src/emu/sound/discrete.c @@ -648,7 +648,7 @@ void discrete_device::display_profiling(void) discrete_step_interface *step; if ((*node)->interface(step)) if (step->run_time > tresh) - printf("%3d: %20s %8.2f %10.2f\n", (*node)->index(), (*node)->module_name(), (float) step->run_time / (float) total * 100.0, ((float) step->run_time) / (float) m_total_samples); + printf("%3d: %20s %8.2f %10.2f\n", (*node)->index(), (*node)->module_name(), (double) step->run_time / (double) total * 100.0, ((double) step->run_time) / (double) m_total_samples); } /* Task information */ |