mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-10 10:08:18 +00:00
Fix storage.cfg reading broken by the str_startswith
change
This commit is contained in:
parent
6f01872ea6
commit
e8c7dca035
|
@ -109,7 +109,7 @@ public:
|
||||||
const char *pLineWithoutPrefix = str_startswith(pLine, "add_path ");
|
const char *pLineWithoutPrefix = str_startswith(pLine, "add_path ");
|
||||||
if(pLineWithoutPrefix)
|
if(pLineWithoutPrefix)
|
||||||
{
|
{
|
||||||
AddPath(pLine);
|
AddPath(pLineWithoutPrefix);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue