helper_string: fix the missing "/" at end of 3 up path in sdkFindFilePath()

This commit is contained in:
Mahesh Doijade 2020-09-17 20:45:23 +05:30
parent 44052982a7
commit dd2dba3489

View File

@ -294,7 +294,7 @@ inline char *sdkFindFilePath(const char *filename,
"../../../Samples/<executable_name>/data/", // up 3 in tree
"../../Samples/<executable_name>/data/", // up 2 in tree
"../../../../Common/data/", // up 4 in tree
"../../../Common/data", // up 3 in tree
"../../../Common/data/", // up 3 in tree
"../../Common/data/" // up 2 in tree
};