mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
Fix bad assert
Field 'm_bInitialized' should be set prior to calling this, this field was named differently and its use case was inverted, forgot to reflect changes in assert.
This commit is contained in:
parent
6811642734
commit
4022fbd3ad
@ -54,7 +54,7 @@ void CSigCache::AddEntry(const string& svPattern, const uint64_t nRVA)
|
||||
return;
|
||||
}
|
||||
|
||||
Assert(!m_bInitialized);
|
||||
Assert(m_bInitialized);
|
||||
(*m_Cache.mutable_smap())[svPattern] = nRVA;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user