diff options
Diffstat (limited to 'src/emu/profiler.cpp')
| -rw-r--r-- | src/emu/profiler.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/emu/profiler.cpp b/src/emu/profiler.cpp index e9cb8f29fda..4e14d27ceec 100644 --- a/src/emu/profiler.cpp +++ b/src/emu/profiler.cpp @@ -173,18 +173,18 @@ void real_profiler_state::update_text(running_machine &machine) }; // compute the total time for all bits, not including profiler or idle - uint64_t computed = 0; + u64 computed = 0; profile_type curtype; for (curtype = PROFILER_DEVICE_FIRST; curtype < PROFILER_PROFILER; ++curtype) computed += m_data[curtype]; // save that result in normalize, and continue adding the rest - uint64_t normalize = computed; + u64 normalize = computed; for ( ; curtype < PROFILER_TOTAL; ++curtype) computed += m_data[curtype]; // this becomes the total; if we end up with 0 for anything, we were just started, so return empty - uint64_t total = computed; + u64 total = computed; m_text.clear(); if (total == 0 || normalize == 0) { |
