mirror of
https://github.com/rvtr/TwlToolsRED.git
synced 2025-10-31 06:41:18 -04:00
マスタエディタ:SRLの読み込みに成功したときに前のTAD読み込みで作成された一時ファイルを削除するようにした(不要なので)。
git-svn-id: file:///Users/lillianskinner/Downloads/platinum/twl/TwlToolsRED@86 7061adef-622a-194b-ae81-725974e89856
This commit is contained in:
parent
dc017fc811
commit
84c8d8f2b5
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -44,6 +44,11 @@ System::Boolean Form1::loadRom( System::String ^infile )
|
||||
if( result )
|
||||
{
|
||||
this->IsLoadTad = false;
|
||||
System::String ^tmpsrl = this->getSplitTadTmpFilename();
|
||||
if( System::IO::File::Exists( tmpsrl ) )
|
||||
{
|
||||
System::IO::File::Delete( tmpsrl ); // SRLの読み込みが成功したら以前のTAD読み込みで使用した一時ファイルは不要
|
||||
}
|
||||
}
|
||||
}
|
||||
return result;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user