summaryrefslogtreecommitdiffstats
path: root/src/emu/profiler.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/profiler.cpp')
-rw-r--r--src/emu/profiler.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/emu/profiler.cpp b/src/emu/profiler.cpp
index 57b775556b2..e9cb8f29fda 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 computed = 0;
+ uint64_t 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 normalize = computed;
+ uint64_t 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 total = computed;
+ uint64_t total = computed;
m_text.clear();
if (total == 0 || normalize == 0)
{