mirror of
https://github.com/thunderbrewhq/squall.git
synced 2025-12-12 02:22:30 +00:00
fix(big): remove assert in Sub to allow a retail bug
This commit is contained in:
parent
04aae89252
commit
5e776b6db7
1 changed files with 2 additions and 1 deletions
|
|
@ -393,7 +393,8 @@ void Sub(BigBuffer& a, const BigBuffer& b, const BigBuffer& c) {
|
|||
|
||||
a.SetCount(i);
|
||||
|
||||
STORM_ASSERT(!borrow);
|
||||
// This assert does not exist in retail WoW or Starcraft.
|
||||
//STORM_ASSERT(!borrow);
|
||||
}
|
||||
|
||||
void ToBinaryAppend(TSGrowableArray<uint8_t>& output, const BigBuffer& buffer) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue