From 50a5cce98520dc10aa8d5e8ac57801669299642f Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Sat, 2 May 2020 00:05:48 +0200 Subject: [PATCH] Reduce search range. --- server/TracySourceView.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server/TracySourceView.cpp b/server/TracySourceView.cpp index e6d5e39c..9656085b 100644 --- a/server/TracySourceView.cpp +++ b/server/TracySourceView.cpp @@ -2280,7 +2280,7 @@ void SourceView::RenderAsmLine( AsmLine& line, uint32_t ipcnt, uint32_t iptotal, { if( line.readX86[idx] == RegsX86::invalid ) break; line.regData[idx] = ReadBit | (int)line.readX86[idx]; - FollowWrite( asmIdx, line.readX86[idx++], 128 ); + FollowWrite( asmIdx, line.readX86[idx++], 64 ); } idx = 0; for(;;) @@ -2301,7 +2301,7 @@ void SourceView::RenderAsmLine( AsmLine& line, uint32_t ipcnt, uint32_t iptotal, } ridx++; } - FollowRead( asmIdx, line.writeX86[idx++], 128 ); + FollowRead( asmIdx, line.writeX86[idx++], 64 ); } } else if( ImGui::IsMouseClicked( 1 ) )