From 7752ef3df775f8405d9fc68a9d7497e7dc74044d Mon Sep 17 00:00:00 2001 From: Stephen White Date: Thu, 11 Oct 2018 19:08:44 +1100 Subject: [PATCH] Fixed issue with SIDPlay and loading file names that start with a number. --- src/iec_commands.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/iec_commands.cpp b/src/iec_commands.cpp index 9e2ba24..c20a365 100644 --- a/src/iec_commands.cpp +++ b/src/iec_commands.cpp @@ -1821,6 +1821,8 @@ void IEC_Commands::OpenFile() } if (*in == ':') in++; + else + in = (char*)channel.command; text = ParseName((char*)in, filename, true, true); if (text)