1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-19 00:20:25 +02:00

Fixed ability to view huge (>2GB) spans

This commit is contained in:
Brian Fiete 2021-12-16 07:49:39 -05:00
parent 2932fceae4
commit 224a17e669
2 changed files with 6 additions and 6 deletions

View file

@ -1295,7 +1295,7 @@ namespace IDE.ui
addrsCount = mWatchSeriesInfo.mAddrs.Length / entryAddrSize;
int totalCount = mWatchSeriesInfo.mCount;
if (totalCount == -1)
if ((totalCount == -1) && (mWatchSeriesInfo.mContinuationData != null))
{
//int wantNewCount = Math.Min(idx + 32, mWatchSeriesInfo.mCount) - addrsCount;
bool continuationDone = false;