mirror of
https://github.com/rvtr/TwlToolsRED.git
synced 2025-10-31 06:41:18 -04:00
マスタエディタ:コマンドラインから絶対パスでSRLを読み込ませたときにパスがおかしくなるバグを修正。
git-svn-id: file:///Users/lillianskinner/Downloads/platinum/twl/TwlToolsRED@155 7061adef-622a-194b-ae81-725974e89856
This commit is contained in:
parent
5d58cd11e2
commit
977104a1fc
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -142,6 +142,11 @@ void Form1::handleArgs(void)
|
||||
return;
|
||||
}
|
||||
System::String ^rompath;
|
||||
if( System::IO::Path::IsPathRooted( romfile ) ) // 絶対パスのときはそのまま表示
|
||||
{
|
||||
rompath = romfile;
|
||||
}
|
||||
else
|
||||
{
|
||||
// 表示のために絶対パスに変換
|
||||
System::String ^currdir = System::Environment::CurrentDirectory;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user