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

Mangle fix - name set when it should append

This commit is contained in:
Brian Fiete 2021-12-22 13:35:25 -05:00
parent 0cd0c8905c
commit a5a8ae9076

View file

@ -11835,7 +11835,7 @@ bool BfModule::TryGetConstString(BfIRConstHolder* constHolder, BfIRValue irValue
BfStringPoolEntry* entry = NULL; BfStringPoolEntry* entry = NULL;
if (mContext->mStringObjectIdMap.TryGetValue(stringId, &entry)) if (mContext->mStringObjectIdMap.TryGetValue(stringId, &entry))
{ {
str = entry->mString; str += entry->mString;
} }
else else
{ {