コード例 #1
0
ファイル: spc.cpp プロジェクト: vitamin-caig/zxtune
 static void ParseID666(const RawHeader::ID666Tag& tag, Builder& target)
 {
   const Tag text(tag.TextTag);
   const Tag bin(tag.BinTag);
   if (text.GetScore() >= bin.GetScore())
   {
     Dbg("Parse text ID666");
     ParseID666(text, target);
   }
   else
   {
     Dbg("Parse binary ID666");
     ParseID666(bin, target);
   }
 }