1
0
mirror of https://github.com/cookiengineer/audacity synced 2026-03-29 10:35:45 +02:00

FileNames: Fix typo in __WXMSW__ preprocessor check

Fixes: 401979369b
Signed-off-by: Mart Raudsepp <leio@gentoo.org>
This commit is contained in:
Mart Raudsepp
2021-09-06 00:03:26 +03:00
parent 4a3f84efe5
commit 930a3a7386

View File

@@ -244,7 +244,7 @@ FilePath FileNames::ConfigDir()
gConfigDir = portablePrefsPath.GetFullPath();
} else {
// Use OS-provided user data dir folder
#if defined(__WSMSW__)
#if defined(__WXMSW__)
wxString configDir(wxStandardPaths::Get().GetUserConfigDir() + wxT("\\Tenacity"));
#else
wxString configDir(wxStandardPaths::Get().GetUserConfigDir() + wxT("/tenacity"));