Fixed issue with SIDPlay and loading file names that start with a number.

This commit is contained in:
Stephen White 2018-10-11 19:08:44 +11:00
parent 824e5da2ac
commit 7752ef3df7
1 changed files with 2 additions and 0 deletions

View File

@ -1821,6 +1821,8 @@ void IEC_Commands::OpenFile()
} }
if (*in == ':') if (*in == ':')
in++; in++;
else
in = (char*)channel.command;
text = ParseName((char*)in, filename, true, true); text = ParseName((char*)in, filename, true, true);
if (text) if (text)