mirror of
https://github.com/jpd002/Play-.git
synced 2025-04-28 13:47:57 +03:00
Process REM in cuesheets.
This commit is contained in:
parent
cc4b9015bd
commit
082c80fb65
1 changed files with 5 additions and 0 deletions
|
@ -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());
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue