From 909144857c2461684efe0e0323fbdce700671937 Mon Sep 17 00:00:00 2001 From: zeromus Date: Sat, 13 Dec 2014 06:33:16 +0000 Subject: [PATCH] dont crash when loading cue with FLAGS command, and leave a note about which FLAGS command we found --- BizHawk.Emulation.DiscSystem/CUE_format.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/BizHawk.Emulation.DiscSystem/CUE_format.cs b/BizHawk.Emulation.DiscSystem/CUE_format.cs index 2401f37795..08bb5d7c6d 100644 --- a/BizHawk.Emulation.DiscSystem/CUE_format.cs +++ b/BizHawk.Emulation.DiscSystem/CUE_format.cs @@ -668,7 +668,11 @@ namespace BizHawk.Emulation.DiscSystem case "SONGWRITER": case "TITLE": case "ISRC": + case "FLAGS": //TODO - keep these for later? + //known flags: + //FLAGS DCP + //that's all. don't know what it means break; default: throw new CueBrokenException("unsupported cue command: " + key);