Remove unnecessary distinction between 32bit and 64bit on osx

This commit is contained in:
Palana
2014-01-25 20:37:42 +01:00
parent 8cd49b705f
commit c1599a069a
4 changed files with 43 additions and 20 deletions

View File

@@ -28,7 +28,7 @@ using namespace std;
bool GetDataFilePath(const char *data, string &output)
{
stringstream str;
str << OBS_DATA_PATH << "/obs-studio/" << data;
str << OBS_DATA_PATH "/obs-studio/" << data;
output = str.str();
return !access(output.c_str(), R_OK);
}