Process REM in cuesheets.

This commit is contained in:
Jean-Philip Desjardins 2021-03-11 19:49:05 -05:00
parent cc4b9015bd
commit 082c80fb65

View file

@ -43,6 +43,11 @@ void CCueSheet::Read(Framework::CStream& stream)
indexCommand->time = ReadCommand(stream);
m_commands.push_back(std::move(indexCommand));
}
else if(nextCommand == "REM")
{
//Ignore remarks
auto remark = stream.ReadLine();
}
else
{
auto message = string_format("Unknown command '%s' encountered.", nextCommand.c_str());