diff --git a/build/tools/MasterEditorTWL/MasterEditorTWL.ncb b/build/tools/MasterEditorTWL/MasterEditorTWL.ncb index 006f1067..275714da 100644 Binary files a/build/tools/MasterEditorTWL/MasterEditorTWL.ncb and b/build/tools/MasterEditorTWL/MasterEditorTWL.ncb differ diff --git a/build/tools/MasterEditorTWL/MasterEditorTWL.suo b/build/tools/MasterEditorTWL/MasterEditorTWL.suo index 716b01c7..4775b1d1 100644 Binary files a/build/tools/MasterEditorTWL/MasterEditorTWL.suo and b/build/tools/MasterEditorTWL/MasterEditorTWL.suo differ diff --git a/build/tools/MasterEditorTWL/MasterEditorTWL/Debug/BuildLog.htm b/build/tools/MasterEditorTWL/MasterEditorTWL/Debug/BuildLog.htm index a63f0c09..8c5ff39c 100644 Binary files a/build/tools/MasterEditorTWL/MasterEditorTWL/Debug/BuildLog.htm and b/build/tools/MasterEditorTWL/MasterEditorTWL/Debug/BuildLog.htm differ diff --git a/build/tools/MasterEditorTWL/MasterEditorTWL/Form1.h b/build/tools/MasterEditorTWL/MasterEditorTWL/Form1.h index b60b25d8..54f803b3 100644 --- a/build/tools/MasterEditorTWL/MasterEditorTWL/Form1.h +++ b/build/tools/MasterEditorTWL/MasterEditorTWL/Form1.h @@ -3832,7 +3832,14 @@ private: System::Windows::Forms::DataGridViewTextBoxColumn^ colErrorCause; } else { - filename = dlg->SelectedPath + filename; + if( !dlg->SelectedPath->EndsWith("\\") ) + { + filename = dlg->SelectedPath + "\\" + filename; + } + else + { + filename = dlg->SelectedPath + filename; + } } } this->saveSrl( filename ); @@ -4026,7 +4033,14 @@ private: System::Windows::Forms::DataGridViewTextBoxColumn^ colErrorCause; } else { - srlfile = dlg->SelectedPath + srlfile; + if( !dlg->SelectedPath->EndsWith("\\") ) + { + srlfile = dlg->SelectedPath + "\\" + srlfile; + } + else + { + srlfile = dlg->SelectedPath + srlfile; + } } }