From: James Turner Date: Sat, 29 Oct 2011 10:15:45 +0000 (+0100) Subject: Make various protocols support multiple definitions, with the new options parsing... X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=facf4c12d4cfba4a0d623ad38c6066fadc2ece39;p=flightgear.git Make various protocols support multiple definitions, with the new options parsing code. --- diff --git a/src/Main/options.cxx b/src/Main/options.cxx index 06995a288..5071f4362 100644 --- a/src/Main/options.cxx +++ b/src/Main/options.cxx @@ -1467,10 +1467,10 @@ struct OptionDesc { {"AV400WSimA", true, OPTION_CHANNEL, "", false, "", 0 }, {"AV400WSimB", true, OPTION_CHANNEL, "", false, "", 0 }, {"garmin", true, OPTION_CHANNEL, "", false, "", 0 }, - {"nmea", true, OPTION_CHANNEL, "", false, "", 0 }, - {"generic", true, OPTION_CHANNEL, "", false, "", 0 }, - {"props", true, OPTION_CHANNEL, "", false, "", 0 }, - {"telnet", true, OPTION_CHANNEL, "", false, "", 0 }, + {"nmea", true, OPTION_CHANNEL | OPTION_MULTI, "", false, "", 0 }, + {"generic", true, OPTION_CHANNEL | OPTION_MULTI, "", false, "", 0 }, + {"props", true, OPTION_CHANNEL | OPTION_MULTI, "", false, "", 0 }, + {"telnet", true, OPTION_CHANNEL | OPTION_MULTI, "", false, "", 0 }, {"pve", true, OPTION_CHANNEL, "", false, "", 0 }, {"ray", true, OPTION_CHANNEL, "", false, "", 0 }, {"rul", true, OPTION_CHANNEL, "", false, "", 0 },