From fe00dde02b02e5a9a02efa8e8e4f9fad020235db Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Szymon=20=C5=81opaciuk?= Date: Tue, 5 Feb 2019 23:52:14 +0000 Subject: [PATCH] Fix error on ROM symlink creation if name non-standard MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This fixes a bug that appeares when using LaunchAPPL with Mini vMac and a ROM which name is not "vMac.ROM". Signed-off-by: Szymon Łopaciuk --- LaunchAPPL/Client/MiniVMac.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LaunchAPPL/Client/MiniVMac.cc b/LaunchAPPL/Client/MiniVMac.cc index b977c2b841..3f88cd8ea6 100644 --- a/LaunchAPPL/Client/MiniVMac.cc +++ b/LaunchAPPL/Client/MiniVMac.cc @@ -224,7 +224,7 @@ MiniVMacLauncher::MiniVMacLauncher(po::variables_map &options) fs::create_symlink( romFile, - tempDir / romFile.filename() ); + tempDir / "vMac.ROM" ); } /*