Remove the override for fonts.conf location on Windows as the default is close enough to sensible.

Originally committed to SVN as r4731.
This commit is contained in:
Thomas Goyne 2010-08-12 01:12:00 +00:00
parent c8851828cd
commit a400800b54
1 changed files with 0 additions and 4 deletions

View File

@ -109,10 +109,6 @@ LibassSubtitlesProvider::LibassSubtitlesProvider(std::string) {
config_dir = OSX_GetBundleResourcesDirectory();
snprintf(config_path, MAXPATHLEN, "%s/etc/fonts/fonts.conf", config_dir);
free(config_dir);
#elif defined(_WIN32)
wxString config_file = StandardPaths::DecodePath(L"?user/fonts/fonts.conf");
char config_path[MAX_PATH];
strcpy_s(config_path, sizeof config_path, config_file.utf8_str());
#else
const char *config_path = NULL;
#endif