mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-08 11:38:21 +02:00
Fix for ReadLib with '/<'-prefixed names
This commit is contained in:
parent
446ec6cae7
commit
3100f7e56d
1 changed files with 1 additions and 1 deletions
|
@ -104,7 +104,7 @@ bool BeLibFile::ReadLib()
|
|||
else
|
||||
{
|
||||
String fileName;
|
||||
if (header.mName[0] == '/')
|
||||
if ((header.mName[0] == '/') && (header.mName[1] != '<') && (libStrTable != NULL))
|
||||
{
|
||||
int tabIdx = atoi(&header.mName[1]);
|
||||
for (int checkIdx = tabIdx; true; checkIdx++)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue