ProfileViewer: Fix copy-paste error :^)

Saw this copy-paste mistake in the ProfileViewer Timeline video
This commit is contained in:
gla3dr 2019-12-15 01:49:04 -06:00 committed by Andreas Kling
parent 4d6968f95d
commit 12cc518d1e
Notes: sideshowbarker 2024-07-19 10:51:24 +09:00

View File

@ -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();