From 12cc518d1e732666e392784f835400600b43ee6a Mon Sep 17 00:00:00 2001 From: gla3dr Date: Sun, 15 Dec 2019 01:49:04 -0600 Subject: [PATCH] ProfileViewer: Fix copy-paste error :^) Saw this copy-paste mistake in the ProfileViewer Timeline video --- DevTools/ProfileViewer/Profile.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DevTools/ProfileViewer/Profile.h b/DevTools/ProfileViewer/Profile.h index 8c759f58ab..2f6e9325a6 100644 --- a/DevTools/ProfileViewer/Profile.h +++ b/DevTools/ProfileViewer/Profile.h @@ -99,7 +99,7 @@ public: u64 length_in_ms() const { return m_last_timestamp - m_first_timestamp; } u64 first_timestamp() const { return m_first_timestamp; } - u64 last_timestamp() const { return m_first_timestamp; } + u64 last_timestamp() const { return m_last_timestamp; } void set_timestamp_filter_range(u64 start, u64 end); void clear_timestamp_filter_range();