UI: Redundant/bad casts

This commit is contained in:
jpark37
2019-08-17 08:49:08 -07:00
parent a6af549155
commit cc7d67d050
2 changed files with 9 additions and 7 deletions

View File

@@ -130,7 +130,7 @@ static void AddExtraModulePaths()
if (ret <= 0)
return;
string path = (char *)base_module_dir;
string path = base_module_dir;
#if defined(__APPLE__)
obs_add_module_path((path + "/bin").c_str(), (path + "/data").c_str());
@@ -4752,7 +4752,7 @@ static BPtr<char> ReadLogFile(const char *subdir, const char *log)
if (GetConfigPath(logDir, sizeof(logDir), subdir) <= 0)
return nullptr;
string path = (char *)logDir;
string path = logDir;
path += "/";
path += log;
@@ -4822,7 +4822,7 @@ void OBSBasic::on_actionViewCurrentLog_triggered()
const char *log = App()->GetCurrentLog();
string path = (char *)logDir;
string path = logDir;
path += "/";
path += log;