1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-08-01 08:29:27 +02:00

FileNames: Fix typo in __WXMSW__ preprocessor check

Fixes: 401979369ba7a480ed70719025e55176581309e6
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"));