Remove wstring variants of string utils functions

* When needed on windows we convert to/from UTF-8. For most places this is easy
  enough, the callstack processing is now moved to store most data as UTF-8 in
  the first place.
This commit is contained in:
baldurk
2019-03-13 13:24:57 +00:00
parent 17e1ea96d2
commit c1408df4cd
22 changed files with 288 additions and 296 deletions
+1 -1
View File
@@ -32,7 +32,7 @@ std::string LocatePluginFile(const std::string &path, const std::string &fileNam
std::string libpath;
FileIO::GetLibraryFilename(libpath);
libpath = dirname(libpath);
libpath = get_dirname(libpath);
std::vector<std::string> paths;