Fix compile error

wxMkDir's mode is required for linux but not windows (yay)
This commit is contained in:
Seth Hillbrand 2023-08-28 14:57:28 -07:00
parent 32b6deb8b1
commit fa15f8aa0c
1 changed files with 6 additions and 6 deletions

View File

@ -856,7 +856,7 @@ bool PANEL_FP_LIB_TABLE::convertLibrary( STRING_UTF8_MAP* aOldFileProps,
try
{
if( !newFileName.DirExists() )
wxMkDir( aNewFilePath );
wxMkDir( aNewFilePath, wxS_DIR_DEFAULT );
bool bestEfforts = false; // throw on first error
oldFilePI->FootprintEnumerate( fpNames, aOldFilePath, bestEfforts, aOldFileProps );