Skip to content

Commit

Permalink
Small fix for the first offset+size pair (ty smol)
Browse files Browse the repository at this point in the history
  • Loading branch information
DIA4A authored Nov 7, 2023
1 parent 91ff712 commit 9e85cc1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Exalt Metadata Dumper/Main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ int main()

int m_nMax = m_nPreviousOffset > m_nPreviousSize ? m_nPreviousOffset : m_nPreviousSize;
int m_nMin = m_nPreviousOffset < m_nPreviousSize ? m_nPreviousOffset : m_nPreviousSize;
if (m_nPairs.size() == 25 || m_nPairs.size() == 28 || m_nPairs.size() == 29)
if (m_nPairs.size() == 25 || m_nPairs.size() == 28 || m_nPairs.size() == 29 || m_nPairs.size() == 30)
{
m_nPreviousOffset = m_nMin;
m_nPreviousSize = m_nMax;
Expand Down

0 comments on commit 9e85cc1

Please sign in to comment.