Merge pull request #18 from Ceropean/master

fix check_path not using path variable
This commit is contained in:
Jim
2014-01-03 18:47:13 -08:00
+1 -1
View File
@@ -28,7 +28,7 @@ using namespace std;
static inline bool check_path(const char* data, const char *path, string &output)
{
ostringstream str;
str << "/usr/local/share/obs-studio/" << data;
str << path << data;
output = str.str();
printf("Attempted path: %s\n", output.c_str());