mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-10 12:32:20 +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
|
else
|
||||||
{
|
{
|
||||||
String fileName;
|
String fileName;
|
||||||
if (header.mName[0] == '/')
|
if ((header.mName[0] == '/') && (header.mName[1] != '<') && (libStrTable != NULL))
|
||||||
{
|
{
|
||||||
int tabIdx = atoi(&header.mName[1]);
|
int tabIdx = atoi(&header.mName[1]);
|
||||||
for (int checkIdx = tabIdx; true; checkIdx++)
|
for (int checkIdx = tabIdx; true; checkIdx++)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue