From e8c7dca03545066342538448bf90414963c96aca Mon Sep 17 00:00:00 2001 From: heinrich5991 Date: Thu, 26 Jul 2018 15:46:54 +0200 Subject: [PATCH] Fix storage.cfg reading broken by the `str_startswith` change --- src/engine/shared/storage.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/engine/shared/storage.cpp b/src/engine/shared/storage.cpp index 5d02045fe..9d8896c50 100644 --- a/src/engine/shared/storage.cpp +++ b/src/engine/shared/storage.cpp @@ -109,7 +109,7 @@ public: const char *pLineWithoutPrefix = str_startswith(pLine, "add_path "); if(pLineWithoutPrefix) { - AddPath(pLine); + AddPath(pLineWithoutPrefix); } }